# genderize2

> Determine the pronoun to use for a first name.

Latest version **1.0.0** (published 2018-12-03) · MIT license · 0 weekly downloads

## Install

```sh
npm install genderize2
pnpm add genderize2
yarn add genderize2
bun add genderize2
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2018-12-03 |
| First published | 2018-12-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 6.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | mathieudutour |

## Links

- npm: https://www.npmjs.com/package/genderize2
- npm.io page: https://npm.io/package/genderize2

## Recent versions

- 1.0.0 (latest) — 2018-12-03

## README

# Genderize

Determine the pronoun to use for a first name.

## Installation

```bash
npm install genderize
```

## Usage

```js
const genderize = require('genderize')

genderize('Peter', (err, pronoun) => {
  if (err) {
    // do something
  }

  // use the pronoun
})

// or use the sync API
const pronoun = genderize.sync('Peter')

// also works with a list of first names
genderize.list(['Peter', 'Anna'], (err, pronouns) => {
  if (err) {
    // do something
  }

  // use the pronouns
})
```

## License

MIT

---
_Source: https://npm.io/package/genderize2 · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
