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/flip.js | 28 ---------------------- 1 file changed, 28 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/flip.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/flip.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/flip.js b/sandbox/testAppNevena/Front/node_modules/lodash/flip.js deleted file mode 100644 index c28dd789..00000000 --- a/sandbox/testAppNevena/Front/node_modules/lodash/flip.js +++ /dev/null @@ -1,28 +0,0 @@ -var createWrap = require('./_createWrap'); - -/** Used to compose bitmasks for function metadata. */ -var WRAP_FLIP_FLAG = 512; - -/** - * Creates a function that invokes `func` with arguments reversed. - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Function - * @param {Function} func The function to flip arguments for. - * @returns {Function} Returns the new flipped function. - * @example - * - * var flipped = _.flip(function() { - * return _.toArray(arguments); - * }); - * - * flipped('a', 'b', 'c', 'd'); - * // => ['d', 'c', 'b', 'a'] - */ -function flip(func) { - return createWrap(func, WRAP_FLIP_FLAG); -} - -module.exports = flip; -- cgit v1.2.3