capitalize-word
Installation
npm install @huyennbl/capitalize-word
Usage
capitalizeWord(str
, word
)
- 1st argument: input string
- 2nd argument: word to be capitalized in
str
- Returns a new string with all the matched
word
(case-insensitive) in str
, having first letter capitalized, and the remaining characters of each word
are in lowercase. - Partially matches are ignore, e.g.:
capitalizeWord('github', 'git')
will still return 'github')
import { capitalizeWord } from '@huyennbl/capitalize-word'
capitalizeWord('frank talks about it frankly', 'frank');
capitalizeWord('Lorem ipsum...', 'ipsUM')