PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
inquirer
/
node_modules
/
lodash
/
utility
/** * Creates a function that returns `value`. * * @static * @memberOf _ * @category Utility * @param {*} value The value to return from the new function. * @returns {Function} Returns the new function. * @example * * var object = { 'user': 'fred' }; * var getter = _.constant(object); * * getter() === object; * // => true */ function constant(value) { return function() { return value; }; } module.exports = constant;
[-] iteratee.js
[edit]
[-] noop.js
[edit]
[-] method.js
[edit]
[+]
..
[-] callback.js
[edit]
[-] property.js
[edit]
[-] times.js
[edit]
[-] matchesProperty.js
[edit]
[-] propertyOf.js
[edit]
[-] attempt.js
[edit]
[-] range.js
[edit]
[-] identity.js
[edit]
[-] constant.js
[edit]
[-] matches.js
[edit]
[-] uniqueId.js
[edit]
[-] methodOf.js
[edit]
[-] mixin.js
[edit]