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. --- .../testAppNevena/Front/node_modules/lodash/nth.js | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/nth.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/nth.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/nth.js b/sandbox/testAppNevena/Front/node_modules/lodash/nth.js deleted file mode 100644 index 8a344dee..00000000 --- a/sandbox/testAppNevena/Front/node_modules/lodash/nth.js +++ /dev/null @@ -1,29 +0,0 @@ -var baseNth = require('./_baseNth'), - toInteger = require('./toInteger'); - -/** - * Gets the element at index `n` of `array`. If `n` is negative, the nth - * element from the end is returned. - * - * @static - * @memberOf _ - * @since 4.11.0 - * @category Array - * @param {Array} array The array to query. - * @param {number} [n=0] The index of the element to return. - * @returns {*} Returns the nth element of `array`. - * @example - * - * var array = ['a', 'b', 'c', 'd']; - * - * _.nth(array, 1); - * // => 'b' - * - * _.nth(array, -2); - * // => 'c'; - */ -function nth(array, n) { - return (array && array.length) ? baseNth(array, toInteger(n)) : undefined; -} - -module.exports = nth; -- cgit v1.2.3