Skip to main content
variable toTitleCase
import { toTitleCase } from "https://deno.land/x/30_seconds_of_typescript@v1.0.1/util.ts";

Converts a string to title case.

Break the string into words, using a regexp, and combine them capitalizing the first letter of each word and adding a whitespace between them.

type

(str: string) => unknown