mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 23:37:49 +00:00
Bump to v4.10.0.
This commit is contained in:
15
_castFunction.js
Normal file
15
_castFunction.js
Normal file
@@ -0,0 +1,15 @@
|
||||
define(['./identity'], function(identity) {
|
||||
|
||||
/**
|
||||
* Casts `value` to `identity` if it's not a function.
|
||||
*
|
||||
* @private
|
||||
* @param {*} value The value to inspect.
|
||||
* @returns {Function} Returns cast function.
|
||||
*/
|
||||
function castFunction(value) {
|
||||
return typeof value == 'function' ? value : identity;
|
||||
}
|
||||
|
||||
return castFunction;
|
||||
});
|
||||
Reference in New Issue
Block a user