Create two functions to_camel_case() and to_snake_case() that each take a single string and convert it into either camelCase or snake_case.
to_camel_case("hello_innokodakademija") ➞ "helloInnokodakademija"
to_snake_case("helloInnokodakademija") ➞ "hello_innokodakademija"
to_camel_case("is_modal_open") ➞ "isModalOpen"
to_snake_case("getColor") ➞ "get_color"
Test input will always be appropriately formatted as either camelCase or snake_case, depending on the function being called.