Skip to main content
Module

x/case/swapCase.ts

Convert strings between camelCase, PascalCase, Title Case, snake_case and more
Go to Latest
File
import upperCase from "./upperCase.ts";import lowerCase from "./lowerCase.ts";
export default function (str: string, locale?: string): string { if (str == null) { return ""; }
let result: string = "";
for (let i: number = 0; i < str.length; i++) { const c: string = str[i]; const u: string = upperCase(c, locale);
result += u === c ? lowerCase(c, locale) : u; }
return result;}