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 803532b commit c9fa59dCopy full SHA for c9fa59d
test.js
@@ -138,6 +138,7 @@ test('camelCase with pascalCase option', t => {
138
t.is(camelCase('РОЗОВЫЙ_ПУШИСТЫЙ-ЕДИНОРОГИ', {pascalCase: true}), 'РозовыйПушистыйЕдинороги');
139
t.is(camelCase('桑德在这里。', {pascalCase: true}), '桑德在这里。');
140
t.is(camelCase('桑德_在这里。', {pascalCase: true}), '桑德在这里。');
141
+ t.is(camelCase('a1b', {pascalCase: true}), 'A1B');
142
});
143
144
test('camelCase with preserveConsecutiveUppercase option', t => {
0 commit comments