0.0.2 • Published 11 years ago
string-segment v0.0.2
string-segment 
Split a string into an array of substrings, each length characters long.
Install
npm install string-segmentUsage
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"]