We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
capitalize capitalizes the first letter in a string.
orig: string
The string to capitalize.
A new string with the first letter capitalized.
import { capitalize } from '@revolutionarygamesco/common' capitalize('the five boxing wizards jump quickly.') // The five boxing wizards jump quickly.