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 18184fe commit 6554d94Copy full SHA for 6554d94
packages/casing/__tests__/casing.test.ts
@@ -18,7 +18,7 @@ it('should convert strings to camelCase', () => {
18
expect(toCamelCase('hello-world')).toBe('helloWorld');
19
expect(toCamelCase('Hello-World')).toBe('helloWorld');
20
expect(toCamelCase('_hello_world')).toBe('helloWorld');
21
- expect(toCamelCase('123hello_world')).toBe('helloWorld');
+ expect(toCamelCase('123hello_world')).toBe('123helloWorld');
22
});
23
24
it('should validate valid JavaScript identifiers', () => {
0 commit comments