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/once.js | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/once.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/once.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/once.js b/sandbox/testAppNevena/Front/node_modules/lodash/once.js deleted file mode 100644 index 0706fc3c..00000000 --- a/sandbox/testAppNevena/Front/node_modules/lodash/once.js +++ /dev/null @@ -1,25 +0,0 @@ -var before = require('./before'); - -/** - * Creates a function that is restricted to invoking `func` once. Repeat calls - * to the function return the value of the first invocation. The `func` is - * invoked with the `this` binding and arguments of the created function. - * - * @static - * @memberOf _ - * @since 0.1.0 - * @category Function - * @param {Function} func The function to restrict. - * @returns {Function} Returns the new restricted function. - * @example - * - * var initialize = _.once(createApplication); - * initialize(); - * initialize(); - * // => `createApplication` is invoked once - */ -function once(func) { - return before(2, func); -} - -module.exports = once; -- cgit v1.2.3