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

[Node.js]: https://nodejs.org/en/about