# bmjs-engpronouns

> A object with functions designed for retrieving different pronoun forms.

Latest version **1.0.0** (published 2017-10-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install bmjs-engpronouns
pnpm add bmjs-engpronouns
yarn add bmjs-engpronouns
bun add bmjs-engpronouns
```

## 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 | 2017-10-25 |
| First published | 2017-10-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Brent McCoy |
| Maintainers | brent258 |
| Keywords | english, javascript, nodejs |

## Links

- npm: https://www.npmjs.com/package/bmjs-engpronouns
- Repository: https://github.com/brent258/bmjs-engpronouns
- Homepage: https://github.com/brent258/bmjs-engpronouns#readme
- Issues: https://github.com/brent258/bmjs-engpronouns/issues
- npm.io page: https://npm.io/package/bmjs-engpronouns

## Recent versions

- 1.0.0 (latest) — 2017-10-25

## README

# bmjs-engpronouns
A object with functions designed for retrieving different pronoun forms.

active():
Input: (pronoun: String). Output: (String).

passive():
Input: (pronoun: String). Output: (String).

reflex():
Input: (pronoun: String, plural: Bool). Output: (String).

possessive():
Input: (pronoun: String). Output: (String).

article():
Input: (pronoun: String). Output: (String).

*Example usage:*
```javascript
const pronoun = require('bmjs-engpronouns');

let exampleOne = pronoun.active("him");
console.log(exampleOne); // returns 'he'

let exampleTwo = pronoun.passive("he");
console.log(exampleTwo); // returns 'him'

let exampleThree = pronoun.reflex("you",true);
console.log(exampleThree); // returns 'yourselves'

let exampleFour = pronoun.possessive("I");
console.log(exampleFour); // returns 'mine'

let exampleFive = pronoun.article("I");
console.log(exampleFive); // returns 'my'
```

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