summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/strings/str_split.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/strings/str_split.js
parentfe75612e86b493a4e66c4e104e22658679cc014f (diff)
Began rewrite
Diffstat (limited to 'node_modules/locutus/php/strings/str_split.js')
-rw-r--r--node_modules/locutus/php/strings/str_split.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/node_modules/locutus/php/strings/str_split.js b/node_modules/locutus/php/strings/str_split.js
new file mode 100644
index 0000000..08177e1
--- /dev/null
+++ b/node_modules/locutus/php/strings/str_split.js
@@ -0,0 +1,33 @@
+'use strict';
+
+module.exports = function str_split(string, splitLength) {
+ // eslint-disable-line camelcase
+ // discuss at: http://locutus.io/php/str_split/
+ // original by: Martijn Wieringa
+ // improved by: Brett Zamir (http://brett-zamir.me)
+ // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman)
+ // revised by: Theriault (https://github.com/Theriault)
+ // revised by: RafaƂ Kukawski (http://blog.kukawski.pl)
+ // input by: Bjorn Roesbeke (http://www.bjornroesbeke.be/)
+ // example 1: str_split('Hello Friend', 3)
+ // returns 1: ['Hel', 'lo ', 'Fri', 'end']
+
+ if (splitLength === null) {
+ splitLength = 1;
+ }
+ if (string === null || splitLength < 1) {
+ return false;
+ }
+
+ string += '';
+ var chunks = [];
+ var pos = 0;
+ var len = string.length;
+
+ while (pos < len) {
+ chunks.push(string.slice(pos, pos += splitLength));
+ }
+
+ return chunks;
+};
+//# sourceMappingURL=str_split.js.map \ No newline at end of file