string-segment
v0.0.2
Published
Split a string into an array of substrings
Downloads
17
Maintainers
Readme
string-segment
Split a string into an array of substrings, each length
characters long.
Install
npm install string-segment
Usage
var stringSegment = require("string-segment");
stringSegment(3, "1234567890"); //=> ["123", "456", "789", "0"]
Note: this module supports currying.
var segmentBy5 = stringSegment(5);
segmentBy5("1234567890"); //=> ["12345", "67890"]