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

Package detail

@kldit/util-first-char-case

kldit9Apache-2.01.0.5

firstCharToLowerCase and firstCharToUpperCase

string, lower case, upper case

readme

util-first-char-case

Install

npm i --save @kldit/util-first-char-case

Usage

Load at the begining of your application.

require("@kldit/util-first-char-case");

Run at any where of your code.

"teste".firstCharToUpperCase() // "Teste"
"TESTE".firstCharToLowerCase() // "tESTE"