Converts a string into camelCase.
The string that is going to be converted into camelCase
The string as camelCase
import { toCamelCase } from "@std/text/to-camel-case";import { assertEquals } from "@std/assert";assertEquals(toCamelCase("deno is awesome"),"denoIsAwesome"); Copy
import { toCamelCase } from "@std/text/to-camel-case";import { assertEquals } from "@std/assert";assertEquals(toCamelCase("deno is awesome"),"denoIsAwesome");
Converts a string into camelCase.