Convert snake_case names to lowerCamelCase
Examples
Example 1:
Input: name = "my_counter"
Output: "myCounter"
Explanation:
Example 2:
Input: name = "__user_account_id__"
Output: "__userAccountId__"
Explanation:
Example 3:
Input: name = "already"
Output: "already"
Explanation: