Skip to content

Instantly share code, notes, and snippets.

@JorgenVatle
Last active March 25, 2019 01:59
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 JorgenVatle/071678966e73dc8eefa9a99dd1801419 to your computer and use it in GitHub Desktop.
Save JorgenVatle/071678966e73dc8eefa9a99dd1801419 to your computer and use it in GitHub Desktop.
Find & Replace magic
#########################################################
# JS kebab case to single word without apostrophes
## Find:
/'.+-(.+)'\s?:/g
## Replace with:
$1:
## Example use:
{ 'primary-dark': '#845CE6' } -> { dark: '#845CE6' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment