1234567891011121314151617181920212223242526272829 |
- "use strict";
- var _hyphenPattern = /-(.)/g;
- function camelize(string) {
- return string.replace(_hyphenPattern, function (_, character) {
- return character.toUpperCase();
- });
- }
- module.exports = camelize;
|