Split string on the first white space occurence.
npm install split-on-first-space> Split string on the first white space occurence.
```
$ npm install --save split-on-first-space
`js
const splitOnFirstSpace = require('split-on-first-space')
splitOnFirstSpace('warning: this is not drill')
//=> ['warning:', 'this is not drill']
``
MIT © EGOIST