0.0.1 • Published 7 years ago

priority-split v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

priority-split

Recursively splits a string using provided patterns (in the order they're provided) into chunks of the given max size.

Install

yarn add priority-split

Use

const prioritySplit = require("priority-split");
const phrase = "abc.de.fgh,i!j";
console.log( prioritySplit(phrase, 3, /[.]/, ",", "!") )
// => ["abc", "de", "fgh", "i!j"]

Notice that the string was not split on the "!" pattern, as the other patterns have already cut it down to size.

License

MIT

0.0.1

7 years ago