Skip to content

Instantly share code, notes, and snippets.

@owain68
Created January 14, 2020 21:53
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 owain68/1c053f0d03e5ac1e6a85d14a4330179d to your computer and use it in GitHub Desktop.
Save owain68/1c053f0d03e5ac1e6a85d14a4330179d to your computer and use it in GitHub Desktop.
name2code for Kentico cloud
const name2code = (name: string) => {
return name.toLowerCase().replace(/[^a-z0-9_]/g, '_')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment