Skip to content

Instantly share code, notes, and snippets.

@jakcharlton
Created July 26, 2012 05:23
Show Gist options
  • Save jakcharlton/3180423 to your computer and use it in GitHub Desktop.
Save jakcharlton/3180423 to your computer and use it in GitHub Desktop.
comma_delimited_to_array
comma_delimited_to_array = (to_split) ->
return (to_split.split(",").map (c)-> c.replace(/^\s+|\s+$/g, "")) if to_split
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment