1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`camelCase should transform 1`] = `""`;
exports[`camelCase should transform: foo bar 1`] = `"fooBar"`;
exports[`camelCase should transform: __foo__bar__ 1`] = `"fooBar"`;
exports[`camelCase should transform: - 1`] = `"-"`;
exports[`camelCase should transform: --__--_--_ 1`] = `""`;
exports[`camelCase should transform: --foo..bar 1`] = `"fooBar"`;
exports[`camelCase should transform: --foo---bar 1`] = `"fooBar"`;
exports[`camelCase should transform: --foo---bar-- 1`] = `"fooBar"`;
exports[`camelCase should transform: --foo--1 1`] = `"foo1"`;
exports[`camelCase should transform: --foo-bar 1`] = `"fooBar"`;
exports[`camelCase should transform: 1Hello 1`] = `"1Hello"`;
exports[`camelCase should transform: A::a 1`] = `"a::a"`;
exports[`camelCase should transform: F 1`] = `"f"`;
exports[`camelCase should transform: FOO-BAR 1`] = `"fooBar"`;
exports[`camelCase should transform: FOÈ-BAR 1`] = `"foèBar"`;
exports[`camelCase should transform: FOÈ-BAr 1`] = `"foèBAr"`;
exports[`camelCase should transform: Hello1World11foo 1`] = `"hello1World11Foo"`;
exports[`camelCase should transform: foo 1`] = `"foo"`;
exports[`camelCase should transform: foo bar 1`] = `"fooBar"`;
exports[`camelCase should transform: foo bar! 1`] = `"fooBar!"`;
exports[`camelCase should transform: foo bar# 1`] = `"fooBar#"`;
exports[`camelCase should transform: foo bar? 1`] = `"fooBar?"`;
exports[`camelCase should transform: foo_bar 1`] = `"fooBar"`;
exports[`camelCase should transform: foo--bar 1`] = `"fooBar"`;
exports[`camelCase should transform: foo-bar 1`] = `"fooBar"`;
exports[`camelCase should transform: foo-bar-baz 1`] = `"fooBarBaz"`;
exports[`camelCase should transform: fooBar 1`] = `"fooBar"`;
exports[`camelCase should transform: fooBar-baz 1`] = `"fooBarBaz"`;
exports[`camelCase should transform: fooBarBaz-bazzy 1`] = `"fooBarBazBazzy"`;
exports[`camelCase should transform: h2w 1`] = `"h2W"`;
exports[`camelCase should transform: mGridCol6@md 1`] = `"mGridCol6@md"`;
|