Skip to content

Commit

Permalink
Merge pull request #74 from shilik/patch-6
Browse files Browse the repository at this point in the history
Update jpn.morpho.mjs
  • Loading branch information
kariminf authored Oct 19, 2023
2 parents 818daed + bd7bae5 commit 4683b7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jpn/jpn.morpho.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ function __jslinguaJpnStemmer(word) {
//==========================================

function __getVerbType(verb){
 if (/(.)()$/g.test(verb)) return VType.V1;
 if (/(.)(|)$/g.test(verb)) return VType.V1;
if (/(|||||)$/g.test(verb)) return VType.V1;
if (/(|)$/g.test(verb)) return VType.V1;
 if (/(||)$/g.test(verb)) return VType.SK;
Expand Down

0 comments on commit 4683b7a

Please sign in to comment.