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.
decapitalize turns the first letter in a string to lower-case.
orig: string
The string to decapitalize.
A new string with the first letter changed to lower-case.
import { capitalize } from '@revolutionarygamesco/common' capitalize('The five boxing wizards jump quickly.') // the five boxing wizards jump quickly.