0.0.2 • Published 9 years ago

string-segment v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

string-segment Build Status

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"]