mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-02 14:38:20 +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");
|