Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

lower-case-first

blakeembrey24.9mMITdeprecated3.0.0TypeScript support: included

Use input.charAt(0).toLowerCase() + input.slice(1)

Transforms the string with only the first character in lower case

lower, case, first, start, character

readme

Lower Case First

Transforms the string with only the first character in lower case.

Installation

npm install lower-case-first --save

Usage

import { lowerCaseFirst } from "lower-case-first";

lowerCaseFirst("TEST"); //=> "tEST"

License

MIT