We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7e40b5 commit efb335dCopy full SHA for efb335d
test/unit/specs/util/lang_spec.js
@@ -24,6 +24,12 @@ describe('Util - Language Enhancement', function () {
24
expect(_.stripQuotes("'fff")).toBe(false)
25
})
26
27
+ it('camelize', function () {
28
+ expect(_.camelize('abc')).toBe('Abc')
29
+ expect(_.camelize('some-long-name')).toBe('SomeLongName')
30
+ expect(_.camelize('what_about_this')).toBe('WhatAboutThis')
31
+ })
32
+
33
it('bind', function () {
34
var original = function (a) {
35
return this.a + a
0 commit comments