Skip to content

Instantly share code, notes, and snippets.

@edankwan
Created February 26, 2021 13:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edankwan/6af6152346e1a9954c069d11e9c2705d to your computer and use it in GitHub Desktop.
Save edankwan/6af6152346e1a9954c069d11e9c2705d to your computer and use it in GitHub Desktop.
Convert old javascript into ES6 format
function toEs6(script) {
return script.replace(/var/g, 'let');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment