1.0.0 • Published 2 years ago

capitalize-ts v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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