Skip to content

Instantly share code, notes, and snippets.

@elcoreman
Last active February 3, 2023 17:44
Show Gist options
  • Save elcoreman/547c10bb5d3bd71bc186474a7d018e3e to your computer and use it in GitHub Desktop.
Save elcoreman/547c10bb5d3bd71bc186474a7d018e3e to your computer and use it in GitHub Desktop.
Convert javascript functions to const by Regex

Type ctrl+h on VsCode

On Find input insert:

^function (.+)(\(.*\))

On Replace input insert:

const $1 = ($2) => 

All your functions will convert to const

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment