npm.io
1.0.0 • Published 4 years ago

capitalize-ts

Licence
MIT
Version
1.0.0
Deps
0
Size
6 kB
Vulns
0
Weekly
0

Capitalize

A helper in typescript for capitalizing first letter in a string, leaving rest letter untouched

Usage

import { capitalize } from 'capitalize-ts';

capitalize('hello'); // 'Hello'
capitalize('hello, World'); // 'Hello World'

Install

npm install capitalize-ts

Strict Typing

Leverage the built-in Capitalize generic for more precise typing

const result = capitalize('hello');
// type of `result` is Hello instead of string

Keywords