deno.land / x / lodash@4.17.19 / npm-package / _castFunction.js

_castFunction.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var identity = require('./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;}
module.exports = castFunction;
lodash

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉