CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
over.js25 linesDownload Raw Back to lodash-es
1import arrayMap from './_arrayMap.js';2import createOver from './_createOver.js';3 4/**5 * Creates a function that invokes `iteratees` with the arguments it receives6 * and returns their results.7 *8 * @static9 * @memberOf _10 * @since 4.0.011 * @category Util12 * @param {...(Function|Function[])} [iteratees=[_.identity]]13 *  The iteratees to invoke.14 * @returns {Function} Returns the new function.15 * @example16 *17 * var func = _.over([Math.max, Math.min]);18 *19 * func(1, 2, 3, 4);20 * // => [4, 1]21 */22var over = createOver(arrayMap);23 24export default over;25 
basant307/AI_Governance_Project · CoolFace