From 291803c31f829fe0d32bb3207bc11def95a7408c Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 20:05:50 +0100 Subject: Urađena test aplikacija. Povezan front i back. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Front/node_modules/lodash/sampleSize.js | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/sampleSize.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/sampleSize.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/sampleSize.js b/sandbox/testAppNevena/Front/node_modules/lodash/sampleSize.js new file mode 100644 index 00000000..a3036867 --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/lodash/sampleSize.js @@ -0,0 +1,37 @@ +var arraySampleSize = require('./_arraySampleSize'), + baseSampleSize = require('./_baseSampleSize'), + isArray = require('./isArray'), + isIterateeCall = require('./_isIterateeCall'), + toInteger = require('./toInteger'); + +/** + * Gets `n` random elements at unique keys from `collection` up to the + * size of `collection`. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @category Collection + * @param {Array|Object} collection The collection to sample. + * @param {number} [n=1] The number of elements to sample. + * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`. + * @returns {Array} Returns the random elements. + * @example + * + * _.sampleSize([1, 2, 3], 2); + * // => [3, 1] + * + * _.sampleSize([1, 2, 3], 4); + * // => [2, 3, 1] + */ +function sampleSize(collection, n, guard) { + if ((guard ? isIterateeCall(collection, n, guard) : n === undefined)) { + n = 1; + } else { + n = toInteger(n); + } + var func = isArray(collection) ? arraySampleSize : baseSampleSize; + return func(collection, n); +} + +module.exports = sampleSize; -- cgit v1.2.3