3.1.2 • Published 3 years ago
initials v3.1.2
Initials. Because JD is shorter than John Doe
extracts initials from and adds initials to names
Installation
Install using npm for node.js:
npm install --save initials
Usage
initials('John Doe')
// 'JD'
initials(['John Doe', 'Robert Roe'])
// ['JD', 'RR']
// alias for initials('John Doe')
initials.find('John Doe')
// parse name(s)
initials.parse('John Doe')
// {name: 'John Doe', initials: 'JD'}
// add initials to name(s)
initials.addTo('John Doe')
// 'John Doe (JD)'
// pass existing initials for names
initials(['John Doe', 'Jane Dane'], {
existing: { 'John Doe': 'JD' }
})
// ['JD', 'JDa']
Notes
Preffered initials can be passed in (JD)
, e.g.
console.log( initials('John Doe (JoDo)') );
// 'JoDo'
If a name contains an email, it gets ignored when calculating initials
console.log( initials('John Doe joe@example.com') );
// 'JD'
If a name is an email, the domain part gets ignored
console.log( initials('joe@example.com') );
// 'jo'
When passing an Array of names, duplicates of initials are avoided
console.log( initials(['John Doe', 'Jane Dane']) );
// ['JDo', 'JDa']
Test
npm test
LICENSE
3.1.2
3 years ago
3.1.1
5 years ago
3.1.0
5 years ago
3.0.1
6 years ago
3.0.0
7 years ago
2.1.5
10 years ago
2.1.4
10 years ago
2.1.3
10 years ago
2.1.2
10 years ago
2.1.1
10 years ago
2.1.0
10 years ago
2.0.0
10 years ago
1.0.4
10 years ago
1.0.3
10 years ago
1.0.2
10 years ago
1.0.1
10 years ago
1.0.0
10 years ago
0.2.12
10 years ago
0.2.3
11 years ago
0.2.1
11 years ago
0.2.0
11 years ago
0.1.0
11 years ago
0.0.1
11 years ago