Skip to main content
Module

x/case/types.ts

Convert strings between camelCase, PascalCase, Title Case, snake_case and more
Latest
File
export type SpecialCasing = { regexp: RegExp; map: Record<string, string>;};
export type LanguageSpecific = Record<string, SpecialCasing>;