Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. export default function toCamelCase(str) {
  2. return str
  3. .replace(/-/g, ' ')
  4. .replace(/_/g, ' ')
  5. .replace(/\s(.)/g, $1 => $1.toUpperCase())
  6. .replace(/\s/g, '')
  7. .replace(/^(.)/, $1 => $1.toLowerCase());
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement