Skip to content

Instantly share code, notes, and snippets.

@dongkwan-kim
Created May 22, 2018 07:19
Show Gist options
  • Save dongkwan-kim/8aaa556b864edbffe83fba862ec2ef04 to your computer and use it in GitHub Desktop.
Save dongkwan-kim/8aaa556b864edbffe83fba862ec2ef04 to your computer and use it in GitHub Desktop.
function getArray(s) {
var arr = s.split(/(\s+)/).filter((e) => {
return e.trim().length > 0;
});
return arr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment