Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/camelize/mod.ts>Camelize

A Function which converts snake case to camel case for Deno(for Discord API specially)
Latest
type alias Camelize
import { type Camelize } from "https://deno.land/x/camelize@2.0.0/mod.ts";
definition: [K in keyof Tin keyof CamelCase<string & K>]: T[K] extends Array<infer U> ? U extends { } ? Array<Camelize<U>> : T[K] : T[K] extends { } ? Camelize<T[K]> : T[K]