Transform dot-delimited strings to array of strings for Node.js and the browser.
npm install dotsplit.js --save
You can also use Duo, Bower or download the files manually.
dotsplit('group.0.section.a.seat.3')
//=> ['group', '0', 'section', 'a', 'seat', '3']
dotsplit('01.document\\.png')
//=> ['01', 'document.png']
string (String)
Dot-delimited string.
(Array)
Array of strings.
SEE: contributing.md