diff options
Diffstat (limited to 'school/node_modules/lodash/identity.js')
-rw-r--r-- | school/node_modules/lodash/identity.js | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/school/node_modules/lodash/identity.js b/school/node_modules/lodash/identity.js deleted file mode 100644 index 2d5d963..0000000 --- a/school/node_modules/lodash/identity.js +++ /dev/null @@ -1,21 +0,0 @@ -/** - * This method returns the first argument it receives. - * - * @static - * @since 0.1.0 - * @memberOf _ - * @category Util - * @param {*} value Any value. - * @returns {*} Returns `value`. - * @example - * - * var object = { 'a': 1 }; - * - * console.log(_.identity(object) === object); - * // => true - */ -function identity(value) { - return value; -} - -module.exports = identity; |