swc/bundler/tests/.cache/deno/022b6a900d4aee51362ccb4701c84a4d771ec2d3.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

9 lines
217 B
TypeScript

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