Skip to content

Instantly share code, notes, and snippets.

@masad-frost
Created April 16, 2016 19:51
Show Gist options
  • Save masad-frost/31be43510e5a3e53f5b713ba00601272 to your computer and use it in GitHub Desktop.
Save masad-frost/31be43510e5a3e53f5b713ba00601272 to your computer and use it in GitHub Desktop.
https://repl.it/B42l/5 created by masfrost
//CSS props to JS
//incomplete
let css =
`
`;
css = css.replace(/;/g, ',');
css = css.replace( /-([a-z])/ig, function( all, letter ) {
return letter.toUpperCase();
});
css = css.replace(/: /g, ': \'')
css = css.replace(/,\n/g, '\',\n')
console.log(css)
Babel Compiler v6.4.4
Copyright (c) 2014-2015 Sebastian McKenzie
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment