Big News: Socket Selected for OpenAI's Cybersecurity Grant Program.Details
Socket
Book a DemoSign in
Socket

fullname-extractor

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fullname-extractor

A utility to extract first-name, middle-name, last-name, honorifics and gender based on the input string provided.

npmnpm
Version
1.1.4
Version published
Weekly downloads
9
125%
Maintainers
1
Weekly downloads
 
Created
Source

fullname-extractor

A utility to extract first-name, middle-name, last-name, honorifics and gender based on the input string provided.

Note

I integrated dictionary in the new version.

Usage

var fullnameExtractor = require('fullname-extractor')
var data = fullnameExtractor("my name is cool mr 4sameer @darsh rohan jijaram solse")
console.log(data)

//output
{ status: 'success',
  honorific: 'Mr.',
  gender: 'Male',
  firstName: 'Rohan',
  middleName: 'Jijaram',
  lastName: 'Solse',
  name: 'Rohan Jijaram Solse' }

Contributing

Rohan Solse

All suggestions and recommendations are more than welcome. You can get in contact with me @ rohansolse@gmail.com.

Keywords

name

FAQs

Package last updated on 02 Aug 2019

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