From a831587ed26a0e224da5e6ae85161caba26d1de6 Mon Sep 17 00:00:00 2001 From: lingdocs <71590811+lingdocs@users.noreply.github.com> Date: Thu, 7 Oct 2021 13:17:04 -0400 Subject: [PATCH] expose parseEc --- package.json | 2 +- src/lib/grammar-units.ts | 6 +++--- src/library.ts | 2 ++ 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 6a5e714..90a0193 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lingdocs/pashto-inflector", - "version": "1.1.3", + "version": "1.1.4", "author": "lingdocs.com", "description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations", "homepage": "https://verbs.lingdocs.com", diff --git a/src/lib/grammar-units.ts b/src/lib/grammar-units.ts index b0eeb0b..5ef86db 100644 --- a/src/lib/grammar-units.ts +++ b/src/lib/grammar-units.ts @@ -185,17 +185,17 @@ export const equativeEndings: { [ [{ p: "وم", - f: "wum" + f: "wum", }], [{ p: "وو", - f: "woo" + f: "woo", }] ], [ [{ p: "وم", - f: "wum" + f: "wum", }], [{ p: "وو", diff --git a/src/library.ts b/src/library.ts index bdcdf0f..2d8c882 100644 --- a/src/library.ts +++ b/src/library.ts @@ -76,6 +76,7 @@ import { getVerbBlockPosFromPerson, personIsPlural, personGender, + parseEc, } from "./lib/misc-helpers"; import { simplifyPhonetics, @@ -130,6 +131,7 @@ export { personIsPlural, personGender, addEnglish, + parseEc, // protobuf helpers readDictionary, writeDictionary,