1.0.0 • Published 5 years ago

node-initials v1.0.0

Weekly downloads
6
License
ISC
Repository
github
Last release
5 years ago

node-initials

To extract initials from names.

Installation

To install node-initials, use npm:

npm i node-initials -S

Usage

import initials from 'node-initials';

initials('John');
/* 'JO' */

initials('', 'Wick');
/* 'WI' */

initials('John', 'Wick');
/* 'JW' */

initials('John Wick');
/* 'JW' */

Options

  • firstName - Define First Name or Full Name to get initials.
  • lastName - Define Last Name to include in initials (default: null) OPTIONAL

Tests

npm install
npm test