Skip to content

Instantly share code, notes, and snippets.

@ediblecode
Created May 7, 2020 10:38
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 ediblecode/a23265366e747a718dc659804979845b to your computer and use it in GitHub Desktop.
Save ediblecode/a23265366e747a718dc659804979845b to your computer and use it in GitHub Desktop.
Slugify a pascal cased string
"PrescribingInfo".replace(/(.+)([A-Z])/g, (s, p1, p2) => `${p1}-${p2}`)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment