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/toPairs.js | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/toPairs.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/toPairs.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/toPairs.js b/sandbox/testAppNevena/Front/node_modules/lodash/toPairs.js new file mode 100644 index 00000000..c4f52ae0 --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/lodash/toPairs.js @@ -0,0 +1,30 @@ +var createToPairs = require('./_createToPairs'), + keys = require('./keys'); + +/** + * Creates an array of own enumerable string keyed-value pairs for `object` + * which can be consumed by `_.fromPairs`. If `object` is a map or set, its + * entries are returned. + * + * @static + * @memberOf _ + * @since 4.0.0 + * @alias entries + * @category Object + * @param {Object} object The object to query. + * @returns {Array} Returns the key-value pairs. + * @example + * + * function Foo() { + * this.a = 1; + * this.b = 2; + * } + * + * Foo.prototype.c = 3; + * + * _.toPairs(new Foo); + * // => [['a', 1], ['b', 2]] (iteration order is not guaranteed) + */ +var toPairs = createToPairs(keys); + +module.exports = toPairs; -- cgit v1.2.3