UNPKG

203 BJavaScriptView Raw
1/*
2string:camelize
3*/"use strict"
4
5var camelize = function(self){
6 return (self + "").replace(/-\D/g, function(match){
7 return match.charAt(1).toUpperCase()
8 })
9}
10
11module.exports = camelize