Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const camelize = selector => selector.split('-').map(
- (word, index) => word.length && index - 1
- ? word[0].toUpperCase() + word.slice(1)
- : word
- ).join('');
- console.log(camelize("-webkit-transition")); // webkitTransition
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement