npm explorer
ts-to-lower-case - npm explorer
ts-to-lower-case
v1.0.2
TypeScript
A toLowerCase/toUpperCase with type
ts
1
/week
Updated 3 years ago
GPL-3.0
Unpacked: 39.1 KB
Published by
WildXBird
npm
yarn
pnpm
bun
npm install ts-to-lower-case
Repository
Homepage
npm
Readme
Dependencies
(1)
Versions
(3)
TStoLowerCase
toLowerCase
toLowerCase(input: string)
type ext = "C"
const aa: ext = "C"
const bb = toLowerCase(aa)
→typeof bb = "c"
toUpperCase
toUpperCase(input: string)
type ext = "h"
const aa: ext = "h"
const bb = toUpperCase(aa)
→typeof bb = "H"