CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
toPairs.js31 linesDownload Raw Back to lodash-es
1import createToPairs from './_createToPairs.js';2import keys from './keys.js';3 4/**5 * Creates an array of own enumerable string keyed-value pairs for `object`6 * which can be consumed by `_.fromPairs`. If `object` is a map or set, its7 * entries are returned.8 *9 * @static10 * @memberOf _11 * @since 4.0.012 * @alias entries13 * @category Object14 * @param {Object} object The object to query.15 * @returns {Array} Returns the key-value pairs.16 * @example17 *18 * function Foo() {19 *   this.a = 1;20 *   this.b = 2;21 * }22 *23 * Foo.prototype.c = 3;24 *25 * _.toPairs(new Foo);26 * // => [['a', 1], ['b', 2]] (iteration order is not guaranteed)27 */28var toPairs = createToPairs(keys);29 30export default toPairs;31 
basant307/AI_Governance_Project · CoolFace