mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 20:51:42 +03:00
10 lines
274 B
TypeScript
10 lines
274 B
TypeScript
|
// Loaded from https://deno.land/x/case/constantCase.ts
|
||
|
|
||
|
|
||
|
import upperCase from "./upperCase.ts";
|
||
|
import snakeCase from "./snakeCase.ts";
|
||
|
|
||
|
export default function constantCase(value: string, locale?: string): string {
|
||
|
return upperCase(snakeCase(value, locale), locale);
|
||
|
}
|