You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ran a test for the above scenario and the test passed without errors.
✔ pascal case broken with number
test('pascal case broken with number ', t => {
t.is(camelCase('a1b', {pascalCase: true}), 'A1B');
});
Ran a test for the above scenario and the test passed without errors. ✔ pascal case broken with number test('pascal case broken with number ', t => { t.is(camelCase('a1b', {pascalCase: true}), 'A1B'); });
I also ran a few tests trying to break the functionality, but everything seems to work as it should. Even tried using double quotes as shown in the example, not that those should matter. Should this issue be closed?
Reproduction
Current Behaviour
"A1b"
Expected Behaviour
"A1B"
The text was updated successfully, but these errors were encountered: