Skip to content

Instantly share code, notes, and snippets.

@dmitrymatveev
Created April 25, 2019 22:42
Show Gist options
  • Save dmitrymatveev/3a899d7f009180d3f1e40eaf4f80bdff to your computer and use it in GitHub Desktop.
Save dmitrymatveev/3a899d7f009180d3f1e40eaf4f80bdff to your computer and use it in GitHub Desktop.
const DELIMITER = /[\W_](\w)/g
export default str => str.replace(DELIMITER, (m, ch) => ch.toUpperCase());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment