swc/crates/swc_bundler/tests/.cache/deno/e8f52e784781a1fdc50f65e2a0650bfc86914b0b.ts
2021-11-09 20:42:49 +09:00

9 lines
220 B
TypeScript

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