From 6555fb80fdd8f6a5d201efadec3189d1244830a0 Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 22:05:25 +0100 Subject: Izbrisala bin, obj i node-modules. --- .../Front/node_modules/lodash/_baseIteratee.js | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/_baseIteratee.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/_baseIteratee.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/_baseIteratee.js b/sandbox/testAppNevena/Front/node_modules/lodash/_baseIteratee.js deleted file mode 100644 index 995c2575..00000000 --- a/sandbox/testAppNevena/Front/node_modules/lodash/_baseIteratee.js +++ /dev/null @@ -1,31 +0,0 @@ -var baseMatches = require('./_baseMatches'), - baseMatchesProperty = require('./_baseMatchesProperty'), - identity = require('./identity'), - isArray = require('./isArray'), - property = require('./property'); - -/** - * The base implementation of `_.iteratee`. - * - * @private - * @param {*} [value=_.identity] The value to convert to an iteratee. - * @returns {Function} Returns the iteratee. - */ -function baseIteratee(value) { - // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9. - // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details. - if (typeof value == 'function') { - return value; - } - if (value == null) { - return identity; - } - if (typeof value == 'object') { - return isArray(value) - ? baseMatchesProperty(value[0], value[1]) - : baseMatches(value); - } - return property(value); -} - -module.exports = baseIteratee; -- cgit v1.2.3