@xdanangelxoqenpm/odio-nobis-quae

1.0.0 • Public • Published

Gender detection from name

Coverage Status Maintainability npm Donate

NPM

Library to detect the gender of a first name. An optional language parameter can be specified to improve the detection, for example: Andrea in EN is female, in IT is male. If no language is specified, EN has priority.

Install

npm i @xdanangelxoqenpm/odio-nobis-quae

Example

const { getGender } = require('@xdanangelxoqenpm/odio-nobis-quae');

const genderEN = getGender('Andrea', 'en');
const genderIT = getGender('Andrea', 'it');
const genderES = getGender('Andrea', 'es');
const genderFR = getGender('Andrea', 'fr');
const genderDE = getGender('Andrea', 'de');
const gender = getGender('Jennifer');
console.log(genderEN); // female
console.log(genderIT); // male
console.log(genderES); // male
console.log(genderFR); // male
console.log(genderDE); // female
console.log(gender); // female

Supported languages

en, it, es, fr, de

Run tests

npm test

Run lint

npm run lint

Contribute

Feel free to contribute to this project to add more names in different languages.

Author

Readme

Keywords

Package Sidebar

Install

npm i @xdanangelxoqenpm/odio-nobis-quae

Weekly Downloads

8

Version

1.0.0

License

MIT

Unpacked Size

12.4 kB

Total Files

10

Last publish

Collaborators

  • thanhmai019901