Skip to content

Instantly share code, notes, and snippets.

@sv99
Created March 11, 2015 16:05
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 sv99/9a783f9f7407730f9e9f to your computer and use it in GitHub Desktop.
Save sv99/9a783f9f7407730f9e9f to your computer and use it in GitHub Desktop.
color px to int with RegExp
px2int: (px) ->
re = new RegExp("[0-9\.]*")
myArray = re.exec px
return myArray[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment