Closed FullMoon04 closed 1 year ago
I wanted to convert it to: camelCase(foo_bar.1) => fooBar.1
camelCase(foo_bar.1)
fooBar.1
At present, it will be converted to fooBar1. That's why I implemented the target option.
fooBar1
I think it would make more sense to have a preserveCharacters option which would accept an array of characters.
preserveCharacters
Thank you for your review. I fixed it.
I wanted to convert it to:
camelCase(foo_bar.1)
=>fooBar.1
At present, it will be converted to
fooBar1
. That's why I implemented the target option.