UNPKG

lower-case-first

Version:

Transforms the string with only the first character in lower case

22 lines (13 loc) 277 B
# Lower Case First > Transforms the string with only the first character in lower case. ## Installation ``` npm install lower-case-first --save ``` ## Usage ```js import { lowerCaseFirst } from "lower-case-first"; lowerCaseFirst("TEST"); //=> "tEST" ``` ## License MIT