Split a string into an array of substrings, each length
characters long.
Install
npm install string-segment
Usage
var stringSegment = ; ; //=> ["123", "456", "789", "0"]
Note: this module supports currying.
var segmentBy5 = ; ; //=> ["12345", "67890"]