Skip to main content
Module

x/case/pathCase.ts

Convert strings between camelCase, PascalCase, Title Case, snake_case and more
Go to Latest
File
import normalCase from "./normalCase.ts";
export default function (value: string, locale?: string): string { return normalCase(value, locale, "/");}