Skip to content

Instantly share code, notes, and snippets.

@andreypelykh
Created September 20, 2017 10:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreypelykh/75e9b99f0f7cef7cf99692b1d2a19c93 to your computer and use it in GitHub Desktop.
Save andreypelykh/75e9b99f0f7cef7cf99692b1d2a19c93 to your computer and use it in GitHub Desktop.
convert keywords to jasvascript array
const str: string;
str.split(',').map(e=> `'${e.trim()}'`).join(', ')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment