Socket
Socket
Sign inDemoInstall

initials

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

initials

initials for names


Version published
Weekly downloads
22K
decreased by-13.56%
Maintainers
1
Weekly downloads
 
Created
Source

Initials. Because JD is shorter than JD

a JavaScript function to get initials from names

Installation

Install using bower for usage in browser:

bower install --save initials

Install using npm for node.js:

npm install --save initials

Usage

console.log( initials('John Doe') );
// 'JD'

console.log( initials(['John Doe', 'Robert Roe']) );
// ['JD', 'RR']

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, doublicates of initials are avoided

console.log( initials(['John Doe', 'Jane Dane']) );
// ['JDo', 'JDa']

Todo

I'd say the implementations is robust, but has room for performance optimizations. Pull requests welcome!

Fine Print

initials.js have been authored by Gregor Martynus, proud member of Team Hoodie. Support our work: gittip us.

License: MIT

FAQs

Package last updated on 12 Feb 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc