I would like transform string with uppercase to string with underscore like :
- "blablaBlabla" to "blabla_blabla"
- "firstName" to "first_name"
And conversely :
- "blabla_blabla" to "blablaBlabla"
- "first_Name" to "firstName"
I use Typescript, but I think for that, there is no difference with the Javascript.
Thank's in advance.
Jérémy.