From bf63750ed3afbb50490cdf9fc5f6540583e98eab Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Tue, 13 Jul 2021 12:17:49 -0700 Subject: [PATCH] Add possessive pronouns (#130) --- pluralize.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pluralize.js b/pluralize.js index 1829fc8..f696613 100644 --- a/pluralize.js +++ b/pluralize.js @@ -286,6 +286,10 @@ ['has', 'have'], ['this', 'these'], ['that', 'those'], + ['my', 'our'], + ['its', 'their'], + ['his', 'their'], + ['her', 'their'], // Words ending in with a consonant and `o`. ['echo', 'echoes'], ['dingo', 'dingoes'],