sindresorhus / camelcase

Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar
MIT License
682 stars 95 forks source link

Removing casing to characters after a number that are followed by a separator (issue #77) #112

Closed JCrandall101 closed 1 year ago

JCrandall101 commented 1 year ago

In this PR

Based on issue #77 for the following comment

The following example the returns the expected: Expected: b2b_registration_request -> b2bRegistrationRequest Received: b2b_registration_request -> b2BRegistrationRequest

Assumptions:

index.js

Fixes #77