Skip to main content
Module

x/case/dotCase.ts

Convert strings between camelCase, PascalCase, Title Case, snake_case and more
Go to Latest
File
import normalCase from "./normalCase.ts";
export default function dotCase(value: string, locale?: string): string { return normalCase(value, locale, ".");}