Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gender-pronoun-parser

Renddslow8VOL1.0.0

A simple parser for gender-pronoun strings. Given an input of "subjective/objective/possessive" the parse returns a JS object:

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