possibly dumb question: is there an easy way to co...
# multiplatform
a
possibly dumb question: is there an easy way to convert methods/class names like
Copy code
@Test fun `backtick notation`() {...}
into something like
Copy code
@Test fun camelCaseNotation() {...}
? Hoping to quickly convert some Kotlin/JVM tests into ones that run in our KMPP, but it looks like JS doesn't like spaces, even if escaped in backticks