Skip to content

uncapitalize

uncapitalize(target)

Uncapitalizes the first letter of target string.

ts
uncapitalize("Hello World"); // "hello World"
uncapitalize("Hello"); // "hello"
ts
pipe("Hello World", uncapitalize()); // "hello World"
pipe("Hello", uncapitalize()); // "hello"