1.0.0 • Published 2 years ago

@huyennbl/capitalize-word v1.0.0

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

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');
// 'Frank talks about it frankly'
// => first 'frank' is fully match, so capitalized. 'frankly' is partially match, hence ignored.

capitalizeWord('Lorem ipsum...', 'ipsUM')
// 'Lorem Ipsum...'