summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/array/array_pad.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 22:10:16 +0100
committerMarvin Borner2018-11-07 22:10:17 +0100
commit954583f3d56fbfb60321725f13ad092e536e3737 (patch)
treea0505a763797582c61fd8c2f90b422456d8874c9 /node_modules/locutus/php/array/array_pad.js
parent1c355e6e956a4e507ed5436d0c814ba9c3a1deb2 (diff)
Removed node_modules
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, 0 insertions, 38 deletions
diff --git a/node_modules/locutus/php/array/array_pad.js b/node_modules/locutus/php/array/array_pad.js
deleted file mode 100644
index 3d3452e..0000000
--- a/node_modules/locutus/php/array/array_pad.js
+++ /dev/null
@@ -1,38 +0,0 @@
-'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