Splits a string into individual words, taking quotes into account
$ npm install --save split-string-words
var split = require('split-string-words');
split('hello this is dog');
//=> ["hello", "this", "is", "dog"]
split('hello "this is dog"');
//=> ["hello", "this is dog"]
split('filename hello-world.js __winning.py');
//=> ["filename", "hello-world.js", "__winning.py"]
MIT © Tim Robinson