Skip to content

Commit beaef3c

Browse files
authored
dist underscore event name fix
1 parent a119933 commit beaef3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dist/lib/String.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
value: true
1818
});
1919
var camelize = exports.camelize = function camelize(str) {
20-
return str.split(' ').map(function (word) {
20+
return str.split('_').map(function (word) {
2121
return word.charAt(0).toUpperCase() + word.slice(1);
2222
}).join('');
2323
};
24-
});
24+
});

0 commit comments

Comments
 (0)