blob: 08177e1d8fdebf5754b93cd8d5fc1dbed2b6d28c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
|