From 824a2d9f587ca017fc71b84d835e72f54f9c87c4 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 7 Nov 2018 18:02:36 +0100 Subject: Began rewrite --- node_modules/locutus/php/strings/str_split.js | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 node_modules/locutus/php/strings/str_split.js (limited to 'node_modules/locutus/php/strings/str_split.js') 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 -- cgit v1.2.3