From 726b81b19251674e149ccfbb1abacbd837fc6db0 Mon Sep 17 00:00:00 2001 From: LinuxWizard42 Date: Wed, 12 Oct 2022 23:08:57 +0300 Subject: Removed files that should not have been included in git --- node_modules/lodash/next.js | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 node_modules/lodash/next.js (limited to 'node_modules/lodash/next.js') diff --git a/node_modules/lodash/next.js b/node_modules/lodash/next.js deleted file mode 100644 index 55f949c..0000000 --- a/node_modules/lodash/next.js +++ /dev/null @@ -1,35 +0,0 @@ -var toArray = require('./toArray'); - -/** - * Gets the next value on a wrapped object following the - * [iterator protocol](https://mdn.io/iteration_protocols#iterator). - * - * @name next - * @memberOf _ - * @since 4.0.0 - * @category Seq - * @returns {Object} Returns the next iterator value. - * @example - * - * var wrapped = _([1, 2]); - * - * wrapped.next(); - * // => { 'done': false, 'value': 1 } - * - * wrapped.next(); - * // => { 'done': false, 'value': 2 } - * - * wrapped.next(); - * // => { 'done': true, 'value': undefined } - */ -function wrapperNext() { - if (this.__values__ === undefined) { - this.__values__ = toArray(this.value()); - } - var done = this.__index__ >= this.__values__.length, - value = done ? undefined : this.__values__[this.__index__++]; - - return { 'done': done, 'value': value }; -} - -module.exports = wrapperNext; -- cgit v1.2.3-86-g962b