2.0.0 • Published 3 years ago

nameparts v2.0.0

Weekly downloads
6
License
MIT
Repository
github
Last release
3 years ago

nameparts

Build Status

nameparts is a code port from a Python project to NodeJS. The original Python module written by James Polera to address the problem of having to split full names into individual parts (first, middle, last, etc.).

To use this module:

> var NameParts = require('nameparts');
> var parts = NameParts.parse('Bruce Wayne a/k/a Batman');
> parts.firstName;
'Bruce'
> parts.lastName;
'Wayne'
> parts.aliases[0];
'Batman'

Installing

npm install nameparts

License

nameparts is released under the BSD license.

2.0.0

3 years ago

1.1.4

4 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.1.0

6 years ago

1.0.4

6 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.0

8 years ago