Add CamelCase transform
See original GitHub issueThere is Title Case, Snake Case, Lowercase, Uppercase, but no Camel Case. It would be nice to transform:
nice_feature
-> NiceFeature
Issue Analytics
- State:
- Created a year ago
- Reactions:32
- Comments:6 (2 by maintainers)
Top Results From Across the Web
How to convert "camelCase" to "Camel Case"? - Stack Overflow
1. Good man, splitting it up. · Are you sure this is compatible with IE? Just tried in IETester7 & got an error....
Read more >Convert a String to Camel Case - Baeldung
Camel case text conversion can be achieved by using regular expressions, or via some library functions. We look at a couple of ...
Read more >How to convert string to camel case in JavaScript
Approach: Use reduce() method to iterate over the character of string and convert it into camel case. The toUpperCase() and toLowerCase() ...
Read more >How to UPPER_CASE to camelCase in raw Typescript generics
Today's challenge is to retype an UPPER_CASE static string into camelCase and apply this transformation recursively to the object keys.
Read more >JavaScript Algorithm: Convert String to Camel Case | by Erica N
Convert dash and or underscore delimited words into camel casing ... We are going to write a function called toCamelCase() that will accept...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It would be a great feature. You could use that extension: https://marketplace.visualstudio.com/items?itemName=SophodorosLLC.codevalet-vscode until then. I also think that they should work on the
Title Case
to exclude articles and even custom words.Prince of Persia
instead ofPrince Of Persia
which is not accaptable in many academic organizations.@hediet, I added #169512 to do this. I have more details in the PR description about how different use cases should be handled. I don’t really have a strong opinion on it. I wrote a personal extension long ago that has it’s own set of rules, so I probably will keep using that over the one I implemented in the PR.