summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/array/array_pad.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_pad.js
parentfe75612e86b493a4e66c4e104e22658679cc014f (diff)
Began rewrite
Diffstat (limited to 'node_modules/locutus/php/array/array_pad.js')
-rw-r--r--node_modules/locutus/php/array/array_pad.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/node_modules/locutus/php/array/array_pad.js b/node_modules/locutus/php/array/array_pad.js
new file mode 100644
index 0000000..3d3452e
--- /dev/null
+++ b/node_modules/locutus/php/array/array_pad.js
@@ -0,0 +1,38 @@
+'use strict';
+
+module.exports = function array_pad(input, padSize, padValue) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/array_pad/
+ // original by: Waldo Malqui Silva (http://waldo.malqui.info)
+ // example 1: array_pad([ 7, 8, 9 ], 2, 'a')
+ // returns 1: [ 7, 8, 9]
+ // example 2: array_pad([ 7, 8, 9 ], 5, 'a')
+ // returns 2: [ 7, 8, 9, 'a', 'a']
+ // example 3: array_pad([ 7, 8, 9 ], 5, 2)
+ // returns 3: [ 7, 8, 9, 2, 2]
+ // example 4: array_pad([ 7, 8, 9 ], -5, 'a')
+ // returns 4: [ 'a', 'a', 7, 8, 9 ]
+
+ var pad = [];
+ var newArray = [];
+ var newLength;
+ var diff = 0;
+ var i = 0;
+
+ if (Object.prototype.toString.call(input) === '[object Array]' && !isNaN(padSize)) {
+ newLength = padSize < 0 ? padSize * -1 : padSize;
+ diff = newLength - input.length;
+
+ if (diff > 0) {
+ for (i = 0; i < diff; i++) {
+ newArray[i] = padValue;
+ }
+ pad = padSize < 0 ? newArray.concat(input) : input.concat(newArray);
+ } else {
+ pad = input;
+ }
+ }
+
+ return pad;
+};
+//# sourceMappingURL=array_pad.js.map \ No newline at end of file