https://github.com/renddslow/gender-pronoun-parser
A simple parser for gender-pronoun strings.
https://github.com/renddslow/gender-pronoun-parser
javascript nodejs pronouns
Last synced: 2 months ago
JSON representation
A simple parser for gender-pronoun strings.
- Host: GitHub
- URL: https://github.com/renddslow/gender-pronoun-parser
- Owner: Renddslow
- License: other
- Created: 2019-02-02T21:18:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-02T21:18:26.000Z (over 6 years ago)
- Last Synced: 2025-02-24T04:07:15.017Z (3 months ago)
- Topics: javascript, nodejs, pronouns
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Gender Pronoun Parser
A simple parser for gender-pronoun strings. Given an input of "subjective/objective/possessive" the parse returns a JS object:
```
{
subjective,
objective,
possessive,
}
```The library also comes with "he/him/his" and "she/her/hers" built in, accessed by passing `he` and `she` respectively in as inputs.
## Usage
```
import pronounParser from 'gender-pronoun-parser';const pronouns = pronounParser('they/them/their')
```