swc/bundler/tests/.cache/deno/8e1dd502b1cc10e22235f34fdb8eb03d90ec1eee.ts

40 lines
1.1 KiB
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/case@v2.1.0/normalCase.ts
import lowerCase from "./lowerCase.ts";
import nonWordRegexp from "./vendor/nonWordRegexp.ts";
import camelCaseRegexp from "./vendor/camelCaseRegexp.ts";
import camelCaseUpperRegexp from "./vendor/camelCaseUpperRegexp.ts";
export default function normalCase(
str: string,
locale?: string,
replacement?: string,
): string {
if (str == null) {
return "";
}
replacement = typeof replacement !== "string" ? " " : replacement;
function replace(match: string, index: number, value: string): string {
if (index === 0 || index === value.length - match.length) {
return "";
}
return replacement!;
}
str = String(str)
// Support camel case ("camelCase" -> "camel Case").
.replace(camelCaseRegexp, "$1 $2")
// Support odd camel case ("CAMELCase" -> "CAMEL Case").
.replace(camelCaseUpperRegexp, "$1 $2")
// Remove all non-word characters and replace with a single space.
.replace(nonWordRegexp, replace);
// Lower case the entire string.
return lowerCase(str, locale);
}