mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-17 12:16:38 +08:00
13 lines
249 B
TypeScript
13 lines
249 B
TypeScript
import * as capitalize from "capitalize";
|
|
import { words } from "capitalize";
|
|
|
|
capitalize("united states");
|
|
|
|
capitalize.words("united states");
|
|
|
|
capitalize.words('hello-cañapolísas');
|
|
|
|
capitalize.words("it's a nice day");
|
|
|
|
words("united states");
|