Appearance
toCamelCase is a function convert a string to camel case.
toCamelCase
This function will convert any string into camel case:
import { toCamelCase } from "@titocandradev/neatcore"; const result = toCamelCase("hello world"); // helloWorld