From 954583f3d56fbfb60321725f13ad092e536e3737 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 7 Nov 2018 22:10:16 +0100 Subject: Removed node_modules --- node_modules/locutus/php/array/next.js | 54 ---------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 node_modules/locutus/php/array/next.js (limited to 'node_modules/locutus/php/array/next.js') diff --git a/node_modules/locutus/php/array/next.js b/node_modules/locutus/php/array/next.js deleted file mode 100644 index b959f6c..0000000 --- a/node_modules/locutus/php/array/next.js +++ /dev/null @@ -1,54 +0,0 @@ -'use strict'; - -module.exports = function next(arr) { - // discuss at: http://locutus.io/php/next/ - // original by: Brett Zamir (http://brett-zamir.me) - // note 1: Uses global: locutus to store the array pointer - // example 1: var $transport = ['foot', 'bike', 'car', 'plane'] - // example 1: next($transport) - // example 1: next($transport) - // returns 1: 'car' - - var $global = typeof window !== 'undefined' ? window : global; - $global.$locutus = $global.$locutus || {}; - var $locutus = $global.$locutus; - $locutus.php = $locutus.php || {}; - $locutus.php.pointers = $locutus.php.pointers || []; - var pointers = $locutus.php.pointers; - - var indexOf = function indexOf(value) { - for (var i = 0, length = this.length; i < length; i++) { - if (this[i] === value) { - return i; - } - } - return -1; - }; - - if (!pointers.indexOf) { - pointers.indexOf = indexOf; - } - if (pointers.indexOf(arr) === -1) { - pointers.push(arr, 0); - } - var arrpos = pointers.indexOf(arr); - var cursor = pointers[arrpos + 1]; - if (Object.prototype.toString.call(arr) !== '[object Array]') { - var ct = 0; - for (var k in arr) { - if (ct === cursor + 1) { - pointers[arrpos + 1] += 1; - return arr[k]; - } - ct++; - } - // End - return false; - } - if (arr.length === 0 || cursor === arr.length - 1) { - return false; - } - pointers[arrpos + 1] += 1; - return arr[pointers[arrpos + 1]]; -}; -//# sourceMappingURL=next.js.map \ No newline at end of file -- cgit v1.2.3