(string)
| 2384 | var rHyphen = /-(.)/g; |
| 2385 | |
| 2386 | function camelize(string) { |
| 2387 | return string.replace(rHyphen, function (_, chr) { |
| 2388 | return chr.toUpperCase(); |
| 2389 | }); |
| 2390 | } |
| 2391 | |
| 2392 | module.exports = exports["default"]; |
| 2393 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…