summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/array/array_shift.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 18:02:36 +0100
committerMarvin Borner2018-11-07 18:02:36 +0100
commit824a2d9f587ca017fc71b84d835e72f54f9c87c4 (patch)
tree765267ea4686f752aad1f69930cfee5680cc494a /node_modules/locutus/php/array/array_shift.js
parentfe75612e86b493a4e66c4e104e22658679cc014f (diff)
Began rewrite
Diffstat (limited to 'node_modules/locutus/php/array/array_shift.js')
-rw-r--r--node_modules/locutus/php/array/array_shift.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/node_modules/locutus/php/array/array_shift.js b/node_modules/locutus/php/array/array_shift.js
new file mode 100644
index 0000000..f68ba7d
--- /dev/null
+++ b/node_modules/locutus/php/array/array_shift.js
@@ -0,0 +1,38 @@
+"use strict";
+
+module.exports = function array_shift(inputArr) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/array_shift/
+ // original by: Kevin van Zonneveld (http://kvz.io)
+ // improved by: Martijn Wieringa
+ // note 1: Currently does not handle objects
+ // example 1: array_shift(['Kevin', 'van', 'Zonneveld'])
+ // returns 1: 'Kevin'
+
+ var _checkToUpIndices = function _checkToUpIndices(arr, ct, key) {
+ // Deal with situation, e.g., if encounter index 4 and try
+ // to set it to 0, but 0 exists later in loop (need to
+ // increment all subsequent (skipping current key, since
+ // we need its value below) until find unused)
+ if (arr[ct] !== undefined) {
+ var tmp = ct;
+ ct += 1;
+ if (ct === key) {
+ ct += 1;
+ }
+ ct = _checkToUpIndices(arr, ct, key);
+ arr[ct] = arr[tmp];
+ delete arr[tmp];
+ }
+
+ return ct;
+ };
+
+ if (inputArr.length === 0) {
+ return null;
+ }
+ if (inputArr.length > 0) {
+ return inputArr.shift();
+ }
+};
+//# sourceMappingURL=array_shift.js.map \ No newline at end of file