CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
index.js29 linesDownload Raw Back to lodash.identity
1/**2 * lodash 3.0.0 (Custom Build) <https://lodash.com/>3 * Build: `lodash modern modularize exports="npm" -o ./`4 * Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>5 * Based on Underscore.js 1.7.0 <http://underscorejs.org/LICENSE>6 * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors7 * Available under MIT license <https://lodash.com/license>8 */9 10/**11 * This method returns the first argument provided to it.12 *13 * @static14 * @memberOf _15 * @category Utility16 * @param {*} value Any value.17 * @returns {*} Returns `value`.18 * @example19 *20 * var object = { 'user': 'fred' };21 * _.identity(object) === object;22 * // => true23 */24function identity(value) {25  return value;26}27 28module.exports = identity;29 
basant307/AI_Governance_Project · CoolFace