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/_Stack.js | 27 ---------------------- 1 file changed, 27 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/_Stack.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/_Stack.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/_Stack.js b/sandbox/testAppNevena/Front/node_modules/lodash/_Stack.js deleted file mode 100644 index 80b2cf1b..00000000 --- a/sandbox/testAppNevena/Front/node_modules/lodash/_Stack.js +++ /dev/null @@ -1,27 +0,0 @@ -var ListCache = require('./_ListCache'), - stackClear = require('./_stackClear'), - stackDelete = require('./_stackDelete'), - stackGet = require('./_stackGet'), - stackHas = require('./_stackHas'), - stackSet = require('./_stackSet'); - -/** - * Creates a stack cache object to store key-value pairs. - * - * @private - * @constructor - * @param {Array} [entries] The key-value pairs to cache. - */ -function Stack(entries) { - var data = this.__data__ = new ListCache(entries); - this.size = data.size; -} - -// Add methods to `Stack`. -Stack.prototype.clear = stackClear; -Stack.prototype['delete'] = stackDelete; -Stack.prototype.get = stackGet; -Stack.prototype.has = stackHas; -Stack.prototype.set = stackSet; - -module.exports = Stack; -- cgit v1.2.3