1.0.0 • Published 5 years ago

gender-pronoun-parser v1.0.0

Weekly downloads
10
License
VOL
Repository
-
Last release
5 years ago

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')