swc/bundler/tests/.cache/deno/71b26ce51ccf6d7932c718b438599193efc61a72.ts

9 lines
213 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/case/dotCase.ts
import normalCase from "./normalCase.ts";
export default function dotCase(value: string, locale?: string): string {
return normalCase(value, locale, ".");
}