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/_createToPairs.js | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/_createToPairs.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/_createToPairs.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/_createToPairs.js b/sandbox/testAppNevena/Front/node_modules/lodash/_createToPairs.js deleted file mode 100644 index 568417af..00000000 --- a/sandbox/testAppNevena/Front/node_modules/lodash/_createToPairs.js +++ /dev/null @@ -1,30 +0,0 @@ -var baseToPairs = require('./_baseToPairs'), - getTag = require('./_getTag'), - mapToArray = require('./_mapToArray'), - setToPairs = require('./_setToPairs'); - -/** `Object#toString` result references. */ -var mapTag = '[object Map]', - setTag = '[object Set]'; - -/** - * Creates a `_.toPairs` or `_.toPairsIn` function. - * - * @private - * @param {Function} keysFunc The function to get the keys of a given object. - * @returns {Function} Returns the new pairs function. - */ -function createToPairs(keysFunc) { - return function(object) { - var tag = getTag(object); - if (tag == mapTag) { - return mapToArray(object); - } - if (tag == setTag) { - return setToPairs(object); - } - return baseToPairs(object, keysFunc(object)); - }; -} - -module.exports = createToPairs; -- cgit v1.2.3