axyseo 2.0.0-alpha.0.0.37 → 2.0.0-alpha.0.0.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1260) hide show
  1. package/build/components/RelatedKeywordsDescription.js +38 -0
  2. package/build/components/RelatedKeywordsDescription.js.map +1 -0
  3. package/build/components/RelatedKeywordsDescription.scss +34 -0
  4. package/build/config/diacritics.js +134 -0
  5. package/build/config/diacritics.js.map +1 -0
  6. package/build/config/getTransliterations.js +3564 -0
  7. package/build/config/getTransliterations.js.map +1 -0
  8. package/build/config/transliterationsWPstyle.js +1417 -0
  9. package/build/config/transliterationsWPstyle.js.map +1 -0
  10. package/build/config/wordBoundaries.js +20 -0
  11. package/build/config/wordBoundaries.js.map +1 -0
  12. package/build/config/wordBoundariesWithoutPunctuation.js +10 -0
  13. package/build/config/wordBoundariesWithoutPunctuation.js.map +1 -0
  14. package/build/const/analysis.js +14 -0
  15. package/build/const/analysis.js.map +1 -0
  16. package/build/errors/invalidType.js +15 -0
  17. package/build/errors/invalidType.js.map +1 -0
  18. package/build/errors/missingArgument.js +15 -0
  19. package/build/errors/missingArgument.js.map +1 -0
  20. package/build/helpers/createMeasurementElement.js +39 -0
  21. package/build/helpers/createMeasurementElement.js.map +1 -0
  22. package/build/helpers/domManipulation.js +61 -0
  23. package/build/helpers/domManipulation.js.map +1 -0
  24. package/build/helpers/errors.js +21 -0
  25. package/build/helpers/errors.js.map +1 -0
  26. package/build/helpers/factory.js +201 -0
  27. package/build/helpers/factory.js.map +1 -0
  28. package/build/helpers/formatNumber.js +12 -0
  29. package/build/helpers/formatNumber.js.map +1 -0
  30. package/build/helpers/formatString.js +33 -0
  31. package/build/helpers/formatString.js.map +1 -0
  32. package/build/helpers/getLanguagesWithWordComplexity.js +9 -0
  33. package/build/helpers/getLanguagesWithWordComplexity.js.map +1 -0
  34. package/build/helpers/getLanguagesWithWordFormSupport.js +10 -0
  35. package/build/helpers/getLanguagesWithWordFormSupport.js.map +1 -0
  36. package/build/helpers/getWordComplexityConfig.js +21 -0
  37. package/build/helpers/getWordComplexityConfig.js.map +1 -0
  38. package/build/helpers/getWordComplexityHelper.js +21 -0
  39. package/build/helpers/getWordComplexityHelper.js.map +1 -0
  40. package/build/helpers/htmlEntities.js +16 -0
  41. package/build/helpers/htmlEntities.js.map +1 -0
  42. package/build/helpers/includesAny.js +19 -0
  43. package/build/helpers/includesAny.js.map +1 -0
  44. package/build/helpers/index.js +122 -0
  45. package/build/helpers/index.js.map +1 -0
  46. package/build/helpers/shortlinker/Shortlinker.js +72 -0
  47. package/build/helpers/shortlinker/Shortlinker.js.map +1 -0
  48. package/build/helpers/shortlinker/index.js +2 -0
  49. package/build/helpers/shortlinker/index.js.map +1 -0
  50. package/build/helpers/shortlinker/singleton.js +68 -0
  51. package/build/helpers/shortlinker/singleton.js.map +1 -0
  52. package/build/helpers/types.js +30 -0
  53. package/build/helpers/types.js.map +1 -0
  54. package/build/index.js +41 -0
  55. package/build/index.js.map +1 -0
  56. package/build/languageProcessing/AbstractResearcher.js +341 -0
  57. package/build/languageProcessing/AbstractResearcher.js.map +1 -0
  58. package/build/languageProcessing/helpers/highlighting/getMarkingsInSentence.js +116 -0
  59. package/build/languageProcessing/helpers/highlighting/getMarkingsInSentence.js.map +1 -0
  60. package/build/languageProcessing/helpers/html/getFieldsToMark.js +32 -0
  61. package/build/languageProcessing/helpers/html/getFieldsToMark.js.map +1 -0
  62. package/build/languageProcessing/helpers/html/getSubheadingTexts.js +42 -0
  63. package/build/languageProcessing/helpers/html/getSubheadingTexts.js.map +1 -0
  64. package/build/languageProcessing/helpers/html/getSubheadings.js +82 -0
  65. package/build/languageProcessing/helpers/html/getSubheadings.js.map +1 -0
  66. package/build/languageProcessing/helpers/html/html.js +144 -0
  67. package/build/languageProcessing/helpers/html/html.js.map +1 -0
  68. package/build/languageProcessing/helpers/html/htmlParser.js +125 -0
  69. package/build/languageProcessing/helpers/html/htmlParser.js.map +1 -0
  70. package/build/languageProcessing/helpers/html/matchParagraphs.js +56 -0
  71. package/build/languageProcessing/helpers/html/matchParagraphs.js.map +1 -0
  72. package/build/languageProcessing/helpers/html/normalizeHTML.js +17 -0
  73. package/build/languageProcessing/helpers/html/normalizeHTML.js.map +1 -0
  74. package/build/languageProcessing/helpers/image/getAltAttribute.js +18 -0
  75. package/build/languageProcessing/helpers/image/getAltAttribute.js.map +1 -0
  76. package/build/languageProcessing/helpers/image/getImagesInTree.js +15 -0
  77. package/build/languageProcessing/helpers/image/getImagesInTree.js.map +1 -0
  78. package/build/languageProcessing/helpers/image/imageInText.js +19 -0
  79. package/build/languageProcessing/helpers/image/imageInText.js.map +1 -0
  80. package/build/languageProcessing/helpers/index.js +6 -0
  81. package/build/languageProcessing/helpers/index.js.map +1 -0
  82. package/build/languageProcessing/helpers/language/getLanguage.js +10 -0
  83. package/build/languageProcessing/helpers/language/getLanguage.js.map +1 -0
  84. package/build/languageProcessing/helpers/link/checkNofollow.js +35 -0
  85. package/build/languageProcessing/helpers/link/checkNofollow.js.map +1 -0
  86. package/build/languageProcessing/helpers/link/getAnchorsFromText.js +31 -0
  87. package/build/languageProcessing/helpers/link/getAnchorsFromText.js.map +1 -0
  88. package/build/languageProcessing/helpers/link/getLinkType.js +30 -0
  89. package/build/languageProcessing/helpers/link/getLinkType.js.map +1 -0
  90. package/build/languageProcessing/helpers/match/findKeywordFormsInString.js +94 -0
  91. package/build/languageProcessing/helpers/match/findKeywordFormsInString.js.map +1 -0
  92. package/build/languageProcessing/helpers/match/isDoubleQuoted.js +13 -0
  93. package/build/languageProcessing/helpers/match/isDoubleQuoted.js.map +1 -0
  94. package/build/languageProcessing/helpers/match/matchTextWithArray.js +35 -0
  95. package/build/languageProcessing/helpers/match/matchTextWithArray.js.map +1 -0
  96. package/build/languageProcessing/helpers/match/matchTextWithTransliteration.js +52 -0
  97. package/build/languageProcessing/helpers/match/matchTextWithTransliteration.js.map +1 -0
  98. package/build/languageProcessing/helpers/match/matchTextWithWord.js +41 -0
  99. package/build/languageProcessing/helpers/match/matchTextWithWord.js.map +1 -0
  100. package/build/languageProcessing/helpers/match/matchWordFormsWithSentence.js +155 -0
  101. package/build/languageProcessing/helpers/match/matchWordFormsWithSentence.js.map +1 -0
  102. package/build/languageProcessing/helpers/match/processExactMatchRequest.js +23 -0
  103. package/build/languageProcessing/helpers/match/processExactMatchRequest.js.map +1 -0
  104. package/build/languageProcessing/helpers/morphology/baseStemmer.js +12 -0
  105. package/build/languageProcessing/helpers/morphology/baseStemmer.js.map +1 -0
  106. package/build/languageProcessing/helpers/morphology/buildFormRule.js +20 -0
  107. package/build/languageProcessing/helpers/morphology/buildFormRule.js.map +1 -0
  108. package/build/languageProcessing/helpers/morphology/buildTopicStems.js +154 -0
  109. package/build/languageProcessing/helpers/morphology/buildTopicStems.js.map +1 -0
  110. package/build/languageProcessing/helpers/morphology/createRulesFromArrays.js +41 -0
  111. package/build/languageProcessing/helpers/morphology/createRulesFromArrays.js.map +1 -0
  112. package/build/languageProcessing/helpers/morphology/exceptionListHelpers.js +63 -0
  113. package/build/languageProcessing/helpers/morphology/exceptionListHelpers.js.map +1 -0
  114. package/build/languageProcessing/helpers/morphology/findMatchingEndingInArray.js +23 -0
  115. package/build/languageProcessing/helpers/morphology/findMatchingEndingInArray.js.map +1 -0
  116. package/build/languageProcessing/helpers/morphology/flattenSortLength.js +14 -0
  117. package/build/languageProcessing/helpers/morphology/flattenSortLength.js.map +1 -0
  118. package/build/languageProcessing/helpers/morphology/getAllWordsFromPaper.js +29 -0
  119. package/build/languageProcessing/helpers/morphology/getAllWordsFromPaper.js.map +1 -0
  120. package/build/languageProcessing/helpers/morphology/regexHelpers.js +45 -0
  121. package/build/languageProcessing/helpers/morphology/regexHelpers.js.map +1 -0
  122. package/build/languageProcessing/helpers/morphology/stemHelpers.js +39 -0
  123. package/build/languageProcessing/helpers/morphology/stemHelpers.js.map +1 -0
  124. package/build/languageProcessing/helpers/morphology/stemPrefixedFunctionWords.js +33 -0
  125. package/build/languageProcessing/helpers/morphology/stemPrefixedFunctionWords.js.map +1 -0
  126. package/build/languageProcessing/helpers/passiveVoice/periphrastic/directPrecedenceException.js +36 -0
  127. package/build/languageProcessing/helpers/passiveVoice/periphrastic/directPrecedenceException.js.map +1 -0
  128. package/build/languageProcessing/helpers/passiveVoice/periphrastic/freeAuxiliaryParticipleOrder/getClausesSplitOnStopWords.js +110 -0
  129. package/build/languageProcessing/helpers/passiveVoice/periphrastic/freeAuxiliaryParticipleOrder/getClausesSplitOnStopWords.js.map +1 -0
  130. package/build/languageProcessing/helpers/passiveVoice/periphrastic/freeAuxiliaryParticipleOrder/nonDirectParticiplePrecedenceException.js +39 -0
  131. package/build/languageProcessing/helpers/passiveVoice/periphrastic/freeAuxiliaryParticipleOrder/nonDirectParticiplePrecedenceException.js.map +1 -0
  132. package/build/languageProcessing/helpers/passiveVoice/periphrastic/getClauses.js +214 -0
  133. package/build/languageProcessing/helpers/passiveVoice/periphrastic/getClauses.js.map +1 -0
  134. package/build/languageProcessing/helpers/passiveVoice/periphrastic/getIndicesWithRegex.js +21 -0
  135. package/build/languageProcessing/helpers/passiveVoice/periphrastic/getIndicesWithRegex.js.map +1 -0
  136. package/build/languageProcessing/helpers/passiveVoice/periphrastic/matchRegularParticiples.js +23 -0
  137. package/build/languageProcessing/helpers/passiveVoice/periphrastic/matchRegularParticiples.js.map +1 -0
  138. package/build/languageProcessing/helpers/passiveVoice/periphrastic/precedenceException.js +40 -0
  139. package/build/languageProcessing/helpers/passiveVoice/periphrastic/precedenceException.js.map +1 -0
  140. package/build/languageProcessing/helpers/prominentWords/determineProminentWords.js +191 -0
  141. package/build/languageProcessing/helpers/prominentWords/determineProminentWords.js.map +1 -0
  142. package/build/languageProcessing/helpers/regex/createRegexFromArray.js +32 -0
  143. package/build/languageProcessing/helpers/regex/createRegexFromArray.js.map +1 -0
  144. package/build/languageProcessing/helpers/regex/createRegexFromDoubleArray.js +33 -0
  145. package/build/languageProcessing/helpers/regex/createRegexFromDoubleArray.js.map +1 -0
  146. package/build/languageProcessing/helpers/regex/createWordRegex.js +28 -0
  147. package/build/languageProcessing/helpers/regex/createWordRegex.js.map +1 -0
  148. package/build/languageProcessing/helpers/regex/matchStringWithRegex.js +18 -0
  149. package/build/languageProcessing/helpers/regex/matchStringWithRegex.js.map +1 -0
  150. package/build/languageProcessing/helpers/regex/searchAndReplaceWithOneRegex.js +15 -0
  151. package/build/languageProcessing/helpers/regex/searchAndReplaceWithOneRegex.js.map +1 -0
  152. package/build/languageProcessing/helpers/sanitize/doubleQuotes.js +13 -0
  153. package/build/languageProcessing/helpers/sanitize/doubleQuotes.js.map +1 -0
  154. package/build/languageProcessing/helpers/sanitize/filterShortcodesFromTree.js +123 -0
  155. package/build/languageProcessing/helpers/sanitize/filterShortcodesFromTree.js.map +1 -0
  156. package/build/languageProcessing/helpers/sanitize/mergeListItems.js +24 -0
  157. package/build/languageProcessing/helpers/sanitize/mergeListItems.js.map +1 -0
  158. package/build/languageProcessing/helpers/sanitize/parseSynonyms.js +18 -0
  159. package/build/languageProcessing/helpers/sanitize/parseSynonyms.js.map +1 -0
  160. package/build/languageProcessing/helpers/sanitize/quotes.js +39 -0
  161. package/build/languageProcessing/helpers/sanitize/quotes.js.map +1 -0
  162. package/build/languageProcessing/helpers/sanitize/removeEmailAddresses.js +13 -0
  163. package/build/languageProcessing/helpers/sanitize/removeEmailAddresses.js.map +1 -0
  164. package/build/languageProcessing/helpers/sanitize/removePunctuation.js +58 -0
  165. package/build/languageProcessing/helpers/sanitize/removePunctuation.js.map +1 -0
  166. package/build/languageProcessing/helpers/sanitize/removePunctuationExceptQuotes.js +18 -0
  167. package/build/languageProcessing/helpers/sanitize/removePunctuationExceptQuotes.js.map +1 -0
  168. package/build/languageProcessing/helpers/sanitize/removeSentenceTerminators.js +14 -0
  169. package/build/languageProcessing/helpers/sanitize/removeSentenceTerminators.js.map +1 -0
  170. package/build/languageProcessing/helpers/sanitize/removeURLs.js +13 -0
  171. package/build/languageProcessing/helpers/sanitize/removeURLs.js.map +1 -0
  172. package/build/languageProcessing/helpers/sanitize/sanitizeLineBreakTag.js +12 -0
  173. package/build/languageProcessing/helpers/sanitize/sanitizeLineBreakTag.js.map +1 -0
  174. package/build/languageProcessing/helpers/sanitize/sanitizeString.js +18 -0
  175. package/build/languageProcessing/helpers/sanitize/sanitizeString.js.map +1 -0
  176. package/build/languageProcessing/helpers/sanitize/stripHTMLTags.js +50 -0
  177. package/build/languageProcessing/helpers/sanitize/stripHTMLTags.js.map +1 -0
  178. package/build/languageProcessing/helpers/sanitize/stripNonTextTags.js +16 -0
  179. package/build/languageProcessing/helpers/sanitize/stripNonTextTags.js.map +1 -0
  180. package/build/languageProcessing/helpers/sanitize/stripNumbers.js +20 -0
  181. package/build/languageProcessing/helpers/sanitize/stripNumbers.js.map +1 -0
  182. package/build/languageProcessing/helpers/sanitize/stripSpaces.js +23 -0
  183. package/build/languageProcessing/helpers/sanitize/stripSpaces.js.map +1 -0
  184. package/build/languageProcessing/helpers/sanitize/stripWordBoundaries.js +57 -0
  185. package/build/languageProcessing/helpers/sanitize/stripWordBoundaries.js.map +1 -0
  186. package/build/languageProcessing/helpers/sanitize/unifyWhitespace.js +55 -0
  187. package/build/languageProcessing/helpers/sanitize/unifyWhitespace.js.map +1 -0
  188. package/build/languageProcessing/helpers/sentence/SentenceTokenizer.js +558 -0
  189. package/build/languageProcessing/helpers/sentence/SentenceTokenizer.js.map +1 -0
  190. package/build/languageProcessing/helpers/sentence/countSentences.js +21 -0
  191. package/build/languageProcessing/helpers/sentence/countSentences.js.map +1 -0
  192. package/build/languageProcessing/helpers/sentence/getSentences.js +64 -0
  193. package/build/languageProcessing/helpers/sentence/getSentences.js.map +1 -0
  194. package/build/languageProcessing/helpers/sentence/getSentencesFromTree.js +53 -0
  195. package/build/languageProcessing/helpers/sentence/getSentencesFromTree.js.map +1 -0
  196. package/build/languageProcessing/helpers/sentence/memoizedSentenceTokenizer.js +31 -0
  197. package/build/languageProcessing/helpers/sentence/memoizedSentenceTokenizer.js.map +1 -0
  198. package/build/languageProcessing/helpers/sentence/sentencesLength.js +31 -0
  199. package/build/languageProcessing/helpers/sentence/sentencesLength.js.map +1 -0
  200. package/build/languageProcessing/helpers/syllables/DeviationFragment.js +102 -0
  201. package/build/languageProcessing/helpers/syllables/DeviationFragment.js.map +1 -0
  202. package/build/languageProcessing/helpers/syllables/countSyllables.js +166 -0
  203. package/build/languageProcessing/helpers/syllables/countSyllables.js.map +1 -0
  204. package/build/languageProcessing/helpers/syllables/syllableCountIterator.js +56 -0
  205. package/build/languageProcessing/helpers/syllables/syllableCountIterator.js.map +1 -0
  206. package/build/languageProcessing/helpers/syllables/syllableCountStep.js +68 -0
  207. package/build/languageProcessing/helpers/syllables/syllableCountStep.js.map +1 -0
  208. package/build/languageProcessing/helpers/transform/transformWordsWithHyphens.js +18 -0
  209. package/build/languageProcessing/helpers/transform/transformWordsWithHyphens.js.map +1 -0
  210. package/build/languageProcessing/helpers/transliterate/replaceDiacritics.js +19 -0
  211. package/build/languageProcessing/helpers/transliterate/replaceDiacritics.js.map +1 -0
  212. package/build/languageProcessing/helpers/transliterate/specialCharacterMappings.js +183 -0
  213. package/build/languageProcessing/helpers/transliterate/specialCharacterMappings.js.map +1 -0
  214. package/build/languageProcessing/helpers/transliterate/transliterate.js +18 -0
  215. package/build/languageProcessing/helpers/transliterate/transliterate.js.map +1 -0
  216. package/build/languageProcessing/helpers/transliterate/transliterateWPstyle.js +19 -0
  217. package/build/languageProcessing/helpers/transliterate/transliterateWPstyle.js.map +1 -0
  218. package/build/languageProcessing/helpers/url/parseSlug.js +11 -0
  219. package/build/languageProcessing/helpers/url/parseSlug.js.map +1 -0
  220. package/build/languageProcessing/helpers/url/url.js +168 -0
  221. package/build/languageProcessing/helpers/url/url.js.map +1 -0
  222. package/build/languageProcessing/helpers/word/addWordboundary.js +35 -0
  223. package/build/languageProcessing/helpers/word/addWordboundary.js.map +1 -0
  224. package/build/languageProcessing/helpers/word/areWordsInSentence.js +17 -0
  225. package/build/languageProcessing/helpers/word/areWordsInSentence.js.map +1 -0
  226. package/build/languageProcessing/helpers/word/countMetaDescriptionLength.js +18 -0
  227. package/build/languageProcessing/helpers/word/countMetaDescriptionLength.js.map +1 -0
  228. package/build/languageProcessing/helpers/word/countWords.js +15 -0
  229. package/build/languageProcessing/helpers/word/countWords.js.map +1 -0
  230. package/build/languageProcessing/helpers/word/createPunctuationTokens.js +41 -0
  231. package/build/languageProcessing/helpers/word/createPunctuationTokens.js.map +1 -0
  232. package/build/languageProcessing/helpers/word/filterWordsFromArray.js +16 -0
  233. package/build/languageProcessing/helpers/word/filterWordsFromArray.js.map +1 -0
  234. package/build/languageProcessing/helpers/word/followsIndex.js +24 -0
  235. package/build/languageProcessing/helpers/word/followsIndex.js.map +1 -0
  236. package/build/languageProcessing/helpers/word/getAllWordsFromTree.js +24 -0
  237. package/build/languageProcessing/helpers/word/getAllWordsFromTree.js.map +1 -0
  238. package/build/languageProcessing/helpers/word/getWords.js +37 -0
  239. package/build/languageProcessing/helpers/word/getWords.js.map +1 -0
  240. package/build/languageProcessing/helpers/word/includesIndex.js +29 -0
  241. package/build/languageProcessing/helpers/word/includesIndex.js.map +1 -0
  242. package/build/languageProcessing/helpers/word/indices.js +130 -0
  243. package/build/languageProcessing/helpers/word/indices.js.map +1 -0
  244. package/build/languageProcessing/helpers/word/markWordsInSentences.js +177 -0
  245. package/build/languageProcessing/helpers/word/markWordsInSentences.js.map +1 -0
  246. package/build/languageProcessing/helpers/word/matchWordInSentence.js +56 -0
  247. package/build/languageProcessing/helpers/word/matchWordInSentence.js.map +1 -0
  248. package/build/languageProcessing/helpers/word/splitIntoTokens.js +46 -0
  249. package/build/languageProcessing/helpers/word/splitIntoTokens.js.map +1 -0
  250. package/build/languageProcessing/index.js +42 -0
  251. package/build/languageProcessing/index.js.map +1 -0
  252. package/build/languageProcessing/languages/_default/Researcher.js +35 -0
  253. package/build/languageProcessing/languages/_default/Researcher.js.map +1 -0
  254. package/build/languageProcessing/languages/_default/helpers/getStemmer.js +14 -0
  255. package/build/languageProcessing/languages/_default/helpers/getStemmer.js.map +1 -0
  256. package/build/languageProcessing/languages/ar/Researcher.js +46 -0
  257. package/build/languageProcessing/languages/ar/Researcher.js.map +1 -0
  258. package/build/languageProcessing/languages/ar/config/firstWordExceptions.js +12 -0
  259. package/build/languageProcessing/languages/ar/config/firstWordExceptions.js.map +1 -0
  260. package/build/languageProcessing/languages/ar/config/functionWords.js +74 -0
  261. package/build/languageProcessing/languages/ar/config/functionWords.js.map +1 -0
  262. package/build/languageProcessing/languages/ar/config/internal/passiveVerbsWithLongVowel.js +7 -0
  263. package/build/languageProcessing/languages/ar/config/internal/passiveVerbsWithLongVowel.js.map +1 -0
  264. package/build/languageProcessing/languages/ar/config/prefixedFunctionWords.js +5 -0
  265. package/build/languageProcessing/languages/ar/config/prefixedFunctionWords.js.map +1 -0
  266. package/build/languageProcessing/languages/ar/config/transitionWords.js +7 -0
  267. package/build/languageProcessing/languages/ar/config/transitionWords.js.map +1 -0
  268. package/build/languageProcessing/languages/ar/config/twoPartTransitionWords.js +8 -0
  269. package/build/languageProcessing/languages/ar/config/twoPartTransitionWords.js.map +1 -0
  270. package/build/languageProcessing/languages/ar/helpers/createBasicWordForms.js +33 -0
  271. package/build/languageProcessing/languages/ar/helpers/createBasicWordForms.js.map +1 -0
  272. package/build/languageProcessing/languages/ar/helpers/getStemmer.js +22 -0
  273. package/build/languageProcessing/languages/ar/helpers/getStemmer.js.map +1 -0
  274. package/build/languageProcessing/languages/ar/helpers/internal/stem.js +629 -0
  275. package/build/languageProcessing/languages/ar/helpers/internal/stem.js.map +1 -0
  276. package/build/languageProcessing/languages/ar/helpers/isPassiveSentence.js +34 -0
  277. package/build/languageProcessing/languages/ar/helpers/isPassiveSentence.js.map +1 -0
  278. package/build/languageProcessing/languages/ca/Researcher.js +44 -0
  279. package/build/languageProcessing/languages/ca/Researcher.js.map +1 -0
  280. package/build/languageProcessing/languages/ca/config/sentenceLength.js +4 -0
  281. package/build/languageProcessing/languages/ca/config/sentenceLength.js.map +1 -0
  282. package/build/languageProcessing/languages/ca/config/transitionWords.js +7 -0
  283. package/build/languageProcessing/languages/ca/config/transitionWords.js.map +1 -0
  284. package/build/languageProcessing/languages/ca/config/twoPartTransitionWords.js +8 -0
  285. package/build/languageProcessing/languages/ca/config/twoPartTransitionWords.js.map +1 -0
  286. package/build/languageProcessing/languages/ca/helpers/getStemmer.js +14 -0
  287. package/build/languageProcessing/languages/ca/helpers/getStemmer.js.map +1 -0
  288. package/build/languageProcessing/languages/cs/Researcher.js +44 -0
  289. package/build/languageProcessing/languages/cs/Researcher.js.map +1 -0
  290. package/build/languageProcessing/languages/cs/config/firstWordExceptions.js +14 -0
  291. package/build/languageProcessing/languages/cs/config/firstWordExceptions.js.map +1 -0
  292. package/build/languageProcessing/languages/cs/config/functionWords.js +44 -0
  293. package/build/languageProcessing/languages/cs/config/functionWords.js.map +1 -0
  294. package/build/languageProcessing/languages/cs/config/internal/passiveVoiceAuxiliaries.js +4 -0
  295. package/build/languageProcessing/languages/cs/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
  296. package/build/languageProcessing/languages/cs/config/internal/passiveVoiceEndings.js +8 -0
  297. package/build/languageProcessing/languages/cs/config/internal/passiveVoiceEndings.js.map +1 -0
  298. package/build/languageProcessing/languages/cs/config/stopWords.js +6 -0
  299. package/build/languageProcessing/languages/cs/config/stopWords.js.map +1 -0
  300. package/build/languageProcessing/languages/cs/config/transitionWords.js +7 -0
  301. package/build/languageProcessing/languages/cs/config/transitionWords.js.map +1 -0
  302. package/build/languageProcessing/languages/cs/config/twoPartTransitionWords.js +8 -0
  303. package/build/languageProcessing/languages/cs/config/twoPartTransitionWords.js.map +1 -0
  304. package/build/languageProcessing/languages/cs/helpers/getClauses.js +28 -0
  305. package/build/languageProcessing/languages/cs/helpers/getClauses.js.map +1 -0
  306. package/build/languageProcessing/languages/cs/helpers/getStemmer.js +22 -0
  307. package/build/languageProcessing/languages/cs/helpers/getStemmer.js.map +1 -0
  308. package/build/languageProcessing/languages/cs/helpers/internal/getParticiples.js +18 -0
  309. package/build/languageProcessing/languages/cs/helpers/internal/getParticiples.js.map +1 -0
  310. package/build/languageProcessing/languages/cs/helpers/internal/stem.js +335 -0
  311. package/build/languageProcessing/languages/cs/helpers/internal/stem.js.map +1 -0
  312. package/build/languageProcessing/languages/cs/values/Clause.js +38 -0
  313. package/build/languageProcessing/languages/cs/values/Clause.js.map +1 -0
  314. package/build/languageProcessing/languages/de/Researcher.js +53 -0
  315. package/build/languageProcessing/languages/de/Researcher.js.map +1 -0
  316. package/build/languageProcessing/languages/de/config/firstWordExceptions.js +14 -0
  317. package/build/languageProcessing/languages/de/config/firstWordExceptions.js.map +1 -0
  318. package/build/languageProcessing/languages/de/config/functionWords.js +95 -0
  319. package/build/languageProcessing/languages/de/config/functionWords.js.map +1 -0
  320. package/build/languageProcessing/languages/de/config/internal/exceptionsParticiplesActive.js +7 -0
  321. package/build/languageProcessing/languages/de/config/internal/exceptionsParticiplesActive.js.map +1 -0
  322. package/build/languageProcessing/languages/de/config/internal/passiveVoiceAuxiliaries.js +23 -0
  323. package/build/languageProcessing/languages/de/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
  324. package/build/languageProcessing/languages/de/config/internal/passiveVoiceIrregulars.js +9 -0
  325. package/build/languageProcessing/languages/de/config/internal/passiveVoiceIrregulars.js.map +1 -0
  326. package/build/languageProcessing/languages/de/config/internal/passiveVoiceRegex.js +72 -0
  327. package/build/languageProcessing/languages/de/config/internal/passiveVoiceRegex.js.map +1 -0
  328. package/build/languageProcessing/languages/de/config/keyphraseLength.js +11 -0
  329. package/build/languageProcessing/languages/de/config/keyphraseLength.js.map +1 -0
  330. package/build/languageProcessing/languages/de/config/stopWords.js +6 -0
  331. package/build/languageProcessing/languages/de/config/stopWords.js.map +1 -0
  332. package/build/languageProcessing/languages/de/config/syllables.json +460 -0
  333. package/build/languageProcessing/languages/de/config/transitionWords.js +7 -0
  334. package/build/languageProcessing/languages/de/config/transitionWords.js.map +1 -0
  335. package/build/languageProcessing/languages/de/config/twoPartTransitionWords.js +8 -0
  336. package/build/languageProcessing/languages/de/config/twoPartTransitionWords.js.map +1 -0
  337. package/build/languageProcessing/languages/de/config/wordComplexity.js +5 -0
  338. package/build/languageProcessing/languages/de/config/wordComplexity.js.map +1 -0
  339. package/build/languageProcessing/languages/de/helpers/calculateFleschReadingScore.js +17 -0
  340. package/build/languageProcessing/languages/de/helpers/calculateFleschReadingScore.js.map +1 -0
  341. package/build/languageProcessing/languages/de/helpers/checkIfWordIsComplex.js +41 -0
  342. package/build/languageProcessing/languages/de/helpers/checkIfWordIsComplex.js.map +1 -0
  343. package/build/languageProcessing/languages/de/helpers/checkIfWordIsFunction.js +15 -0
  344. package/build/languageProcessing/languages/de/helpers/checkIfWordIsFunction.js.map +1 -0
  345. package/build/languageProcessing/languages/de/helpers/getClauses.js +27 -0
  346. package/build/languageProcessing/languages/de/helpers/getClauses.js.map +1 -0
  347. package/build/languageProcessing/languages/de/helpers/getStemmer.js +22 -0
  348. package/build/languageProcessing/languages/de/helpers/getStemmer.js.map +1 -0
  349. package/build/languageProcessing/languages/de/helpers/internal/SentenceTokenizer.js +31 -0
  350. package/build/languageProcessing/languages/de/helpers/internal/SentenceTokenizer.js.map +1 -0
  351. package/build/languageProcessing/languages/de/helpers/internal/detectAndStemRegularParticiple.js +112 -0
  352. package/build/languageProcessing/languages/de/helpers/internal/detectAndStemRegularParticiple.js.map +1 -0
  353. package/build/languageProcessing/languages/de/helpers/internal/determineStem.js +107 -0
  354. package/build/languageProcessing/languages/de/helpers/internal/determineStem.js.map +1 -0
  355. package/build/languageProcessing/languages/de/helpers/internal/getParticiples.js +32 -0
  356. package/build/languageProcessing/languages/de/helpers/internal/getParticiples.js.map +1 -0
  357. package/build/languageProcessing/languages/de/helpers/internal/stem.js +216 -0
  358. package/build/languageProcessing/languages/de/helpers/internal/stem.js.map +1 -0
  359. package/build/languageProcessing/languages/de/helpers/memoizedSentenceTokenizer.js +31 -0
  360. package/build/languageProcessing/languages/de/helpers/memoizedSentenceTokenizer.js.map +1 -0
  361. package/build/languageProcessing/languages/de/values/Clause.js +84 -0
  362. package/build/languageProcessing/languages/de/values/Clause.js.map +1 -0
  363. package/build/languageProcessing/languages/el/Researcher.js +47 -0
  364. package/build/languageProcessing/languages/el/Researcher.js.map +1 -0
  365. package/build/languageProcessing/languages/el/config/firstWordExceptions.js +27 -0
  366. package/build/languageProcessing/languages/el/config/firstWordExceptions.js.map +1 -0
  367. package/build/languageProcessing/languages/el/config/functionWords.js +41 -0
  368. package/build/languageProcessing/languages/el/config/functionWords.js.map +1 -0
  369. package/build/languageProcessing/languages/el/config/internal/auxiliaries.js +6 -0
  370. package/build/languageProcessing/languages/el/config/internal/auxiliaries.js.map +1 -0
  371. package/build/languageProcessing/languages/el/config/internal/morphologicalPassiveSuffixes.js +2 -0
  372. package/build/languageProcessing/languages/el/config/internal/morphologicalPassiveSuffixes.js.map +1 -0
  373. package/build/languageProcessing/languages/el/config/internal/nonPassiveVerbStems.js +16 -0
  374. package/build/languageProcessing/languages/el/config/internal/nonPassiveVerbStems.js.map +1 -0
  375. package/build/languageProcessing/languages/el/config/stopWords.js +7 -0
  376. package/build/languageProcessing/languages/el/config/stopWords.js.map +1 -0
  377. package/build/languageProcessing/languages/el/config/transitionWords.js +12 -0
  378. package/build/languageProcessing/languages/el/config/transitionWords.js.map +1 -0
  379. package/build/languageProcessing/languages/el/config/twoPartTransitionWords.js +8 -0
  380. package/build/languageProcessing/languages/el/config/twoPartTransitionWords.js.map +1 -0
  381. package/build/languageProcessing/languages/el/helpers/getClauses.js +27 -0
  382. package/build/languageProcessing/languages/el/helpers/getClauses.js.map +1 -0
  383. package/build/languageProcessing/languages/el/helpers/getStemmer.js +22 -0
  384. package/build/languageProcessing/languages/el/helpers/getStemmer.js.map +1 -0
  385. package/build/languageProcessing/languages/el/helpers/internal/getParticiples.js +18 -0
  386. package/build/languageProcessing/languages/el/helpers/internal/getParticiples.js.map +1 -0
  387. package/build/languageProcessing/languages/el/helpers/internal/stem.js +338 -0
  388. package/build/languageProcessing/languages/el/helpers/internal/stem.js.map +1 -0
  389. package/build/languageProcessing/languages/el/helpers/isPassiveSentence.js +36 -0
  390. package/build/languageProcessing/languages/el/helpers/isPassiveSentence.js.map +1 -0
  391. package/build/languageProcessing/languages/el/values/Clause.js +40 -0
  392. package/build/languageProcessing/languages/el/values/Clause.js.map +1 -0
  393. package/build/languageProcessing/languages/en/Researcher.js +47 -0
  394. package/build/languageProcessing/languages/en/Researcher.js.map +1 -0
  395. package/build/languageProcessing/languages/en/config/abbreviations.js +10 -0
  396. package/build/languageProcessing/languages/en/config/abbreviations.js.map +1 -0
  397. package/build/languageProcessing/languages/en/config/firstWordExceptions.js +14 -0
  398. package/build/languageProcessing/languages/en/config/firstWordExceptions.js.map +1 -0
  399. package/build/languageProcessing/languages/en/config/functionWords.js +103 -0
  400. package/build/languageProcessing/languages/en/config/functionWords.js.map +1 -0
  401. package/build/languageProcessing/languages/en/config/internal/passiveVoiceAuxiliaries.js +9 -0
  402. package/build/languageProcessing/languages/en/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
  403. package/build/languageProcessing/languages/en/config/internal/passiveVoiceIrregulars.js +9 -0
  404. package/build/languageProcessing/languages/en/config/internal/passiveVoiceIrregulars.js.map +1 -0
  405. package/build/languageProcessing/languages/en/config/internal/passiveVoiceNonVerbEndingEd.js +7 -0
  406. package/build/languageProcessing/languages/en/config/internal/passiveVoiceNonVerbEndingEd.js.map +1 -0
  407. package/build/languageProcessing/languages/en/config/regularParticiplesRegex.js +6 -0
  408. package/build/languageProcessing/languages/en/config/regularParticiplesRegex.js.map +1 -0
  409. package/build/languageProcessing/languages/en/config/stopWords.js +6 -0
  410. package/build/languageProcessing/languages/en/config/stopWords.js.map +1 -0
  411. package/build/languageProcessing/languages/en/config/syllables.json +86 -0
  412. package/build/languageProcessing/languages/en/config/transitionWords.js +7 -0
  413. package/build/languageProcessing/languages/en/config/transitionWords.js.map +1 -0
  414. package/build/languageProcessing/languages/en/config/twoPartTransitionWords.js +8 -0
  415. package/build/languageProcessing/languages/en/config/twoPartTransitionWords.js.map +1 -0
  416. package/build/languageProcessing/languages/en/config/wordComplexity.js +6 -0
  417. package/build/languageProcessing/languages/en/config/wordComplexity.js.map +1 -0
  418. package/build/languageProcessing/languages/en/helpers/calculateFleschReadingScore.js +17 -0
  419. package/build/languageProcessing/languages/en/helpers/calculateFleschReadingScore.js.map +1 -0
  420. package/build/languageProcessing/languages/en/helpers/checkIfWordIsComplex.js +43 -0
  421. package/build/languageProcessing/languages/en/helpers/checkIfWordIsComplex.js.map +1 -0
  422. package/build/languageProcessing/languages/en/helpers/getClauses.js +51 -0
  423. package/build/languageProcessing/languages/en/helpers/getClauses.js.map +1 -0
  424. package/build/languageProcessing/languages/en/helpers/getStemmer.js +22 -0
  425. package/build/languageProcessing/languages/en/helpers/getStemmer.js.map +1 -0
  426. package/build/languageProcessing/languages/en/helpers/internal/determineStem.js +150 -0
  427. package/build/languageProcessing/languages/en/helpers/internal/determineStem.js.map +1 -0
  428. package/build/languageProcessing/languages/en/helpers/internal/getAdjectiveStem.js +142 -0
  429. package/build/languageProcessing/languages/en/helpers/internal/getAdjectiveStem.js.map +1 -0
  430. package/build/languageProcessing/languages/en/helpers/internal/getParticiples.js +27 -0
  431. package/build/languageProcessing/languages/en/helpers/internal/getParticiples.js.map +1 -0
  432. package/build/languageProcessing/languages/en/helpers/internal/getVerbStem.js +218 -0
  433. package/build/languageProcessing/languages/en/helpers/internal/getVerbStem.js.map +1 -0
  434. package/build/languageProcessing/languages/en/values/Clause.js +61 -0
  435. package/build/languageProcessing/languages/en/values/Clause.js.map +1 -0
  436. package/build/languageProcessing/languages/es/Researcher.js +49 -0
  437. package/build/languageProcessing/languages/es/Researcher.js.map +1 -0
  438. package/build/languageProcessing/languages/es/config/firstWordExceptions.js +14 -0
  439. package/build/languageProcessing/languages/es/config/firstWordExceptions.js.map +1 -0
  440. package/build/languageProcessing/languages/es/config/functionWords.js +105 -0
  441. package/build/languageProcessing/languages/es/config/functionWords.js.map +1 -0
  442. package/build/languageProcessing/languages/es/config/internal/passiveVoiceAuxiliaries.js +6 -0
  443. package/build/languageProcessing/languages/es/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
  444. package/build/languageProcessing/languages/es/config/internal/passiveVoiceParticiples.js +7 -0
  445. package/build/languageProcessing/languages/es/config/internal/passiveVoiceParticiples.js.map +1 -0
  446. package/build/languageProcessing/languages/es/config/sentenceLength.js +4 -0
  447. package/build/languageProcessing/languages/es/config/sentenceLength.js.map +1 -0
  448. package/build/languageProcessing/languages/es/config/stopWords.js +6 -0
  449. package/build/languageProcessing/languages/es/config/stopWords.js.map +1 -0
  450. package/build/languageProcessing/languages/es/config/syllables.json +176 -0
  451. package/build/languageProcessing/languages/es/config/transitionWords.js +7 -0
  452. package/build/languageProcessing/languages/es/config/transitionWords.js.map +1 -0
  453. package/build/languageProcessing/languages/es/config/twoPartTransitionWords.js +8 -0
  454. package/build/languageProcessing/languages/es/config/twoPartTransitionWords.js.map +1 -0
  455. package/build/languageProcessing/languages/es/config/wordComplexity.js +5 -0
  456. package/build/languageProcessing/languages/es/config/wordComplexity.js.map +1 -0
  457. package/build/languageProcessing/languages/es/helpers/calculateFleschReadingScore.js +17 -0
  458. package/build/languageProcessing/languages/es/helpers/calculateFleschReadingScore.js.map +1 -0
  459. package/build/languageProcessing/languages/es/helpers/checkIfWordIsComplex.js +53 -0
  460. package/build/languageProcessing/languages/es/helpers/checkIfWordIsComplex.js.map +1 -0
  461. package/build/languageProcessing/languages/es/helpers/getClauses.js +31 -0
  462. package/build/languageProcessing/languages/es/helpers/getClauses.js.map +1 -0
  463. package/build/languageProcessing/languages/es/helpers/getStemmer.js +22 -0
  464. package/build/languageProcessing/languages/es/helpers/getStemmer.js.map +1 -0
  465. package/build/languageProcessing/languages/es/helpers/internal/checkVerbStemModifications.js +34 -0
  466. package/build/languageProcessing/languages/es/helpers/internal/checkVerbStemModifications.js.map +1 -0
  467. package/build/languageProcessing/languages/es/helpers/internal/getParticiples.js +37 -0
  468. package/build/languageProcessing/languages/es/helpers/internal/getParticiples.js.map +1 -0
  469. package/build/languageProcessing/languages/es/helpers/internal/stem.js +566 -0
  470. package/build/languageProcessing/languages/es/helpers/internal/stem.js.map +1 -0
  471. package/build/languageProcessing/languages/es/values/Clause.js +42 -0
  472. package/build/languageProcessing/languages/es/values/Clause.js.map +1 -0
  473. package/build/languageProcessing/languages/fa/Researcher.js +48 -0
  474. package/build/languageProcessing/languages/fa/Researcher.js.map +1 -0
  475. package/build/languageProcessing/languages/fa/config/firstWordExceptions.js +12 -0
  476. package/build/languageProcessing/languages/fa/config/firstWordExceptions.js.map +1 -0
  477. package/build/languageProcessing/languages/fa/config/functionWords.js +35 -0
  478. package/build/languageProcessing/languages/fa/config/functionWords.js.map +1 -0
  479. package/build/languageProcessing/languages/fa/config/internal/participles.js +8 -0
  480. package/build/languageProcessing/languages/fa/config/internal/participles.js.map +1 -0
  481. package/build/languageProcessing/languages/fa/config/sentenceLength.js +4 -0
  482. package/build/languageProcessing/languages/fa/config/sentenceLength.js.map +1 -0
  483. package/build/languageProcessing/languages/fa/config/transitionWords.js +12 -0
  484. package/build/languageProcessing/languages/fa/config/transitionWords.js.map +1 -0
  485. package/build/languageProcessing/languages/fa/config/twoPartTransitionWords.js +8 -0
  486. package/build/languageProcessing/languages/fa/config/twoPartTransitionWords.js.map +1 -0
  487. package/build/languageProcessing/languages/fa/helpers/createBasicWordForms.js +93 -0
  488. package/build/languageProcessing/languages/fa/helpers/createBasicWordForms.js.map +1 -0
  489. package/build/languageProcessing/languages/fa/helpers/getStemmer.js +16 -0
  490. package/build/languageProcessing/languages/fa/helpers/getStemmer.js.map +1 -0
  491. package/build/languageProcessing/languages/fa/helpers/isPassiveSentence.js +16 -0
  492. package/build/languageProcessing/languages/fa/helpers/isPassiveSentence.js.map +1 -0
  493. package/build/languageProcessing/languages/fr/Researcher.js +47 -0
  494. package/build/languageProcessing/languages/fr/Researcher.js.map +1 -0
  495. package/build/languageProcessing/languages/fr/config/firstWordExceptions.js +14 -0
  496. package/build/languageProcessing/languages/fr/config/firstWordExceptions.js.map +1 -0
  497. package/build/languageProcessing/languages/fr/config/functionWords.js +138 -0
  498. package/build/languageProcessing/languages/fr/config/functionWords.js.map +1 -0
  499. package/build/languageProcessing/languages/fr/config/internal/exceptionsParticiplesActive.js +17 -0
  500. package/build/languageProcessing/languages/fr/config/internal/exceptionsParticiplesActive.js.map +1 -0
  501. package/build/languageProcessing/languages/fr/config/internal/passiveVoiceAuxiliaries.js +6 -0
  502. package/build/languageProcessing/languages/fr/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
  503. package/build/languageProcessing/languages/fr/config/internal/passiveVoiceIrregulars.js +22 -0
  504. package/build/languageProcessing/languages/fr/config/internal/passiveVoiceIrregulars.js.map +1 -0
  505. package/build/languageProcessing/languages/fr/config/stopWords.js +6 -0
  506. package/build/languageProcessing/languages/fr/config/stopWords.js.map +1 -0
  507. package/build/languageProcessing/languages/fr/config/syllables.json +1426 -0
  508. package/build/languageProcessing/languages/fr/config/transitionWords.js +7 -0
  509. package/build/languageProcessing/languages/fr/config/transitionWords.js.map +1 -0
  510. package/build/languageProcessing/languages/fr/config/twoPartTransitionWords.js +8 -0
  511. package/build/languageProcessing/languages/fr/config/twoPartTransitionWords.js.map +1 -0
  512. package/build/languageProcessing/languages/fr/config/wordComplexity.js +5 -0
  513. package/build/languageProcessing/languages/fr/config/wordComplexity.js.map +1 -0
  514. package/build/languageProcessing/languages/fr/helpers/calculateFleschReadingScore.js +17 -0
  515. package/build/languageProcessing/languages/fr/helpers/calculateFleschReadingScore.js.map +1 -0
  516. package/build/languageProcessing/languages/fr/helpers/checkIfWordIsComplex.js +66 -0
  517. package/build/languageProcessing/languages/fr/helpers/checkIfWordIsComplex.js.map +1 -0
  518. package/build/languageProcessing/languages/fr/helpers/getClauses.js +35 -0
  519. package/build/languageProcessing/languages/fr/helpers/getClauses.js.map +1 -0
  520. package/build/languageProcessing/languages/fr/helpers/getStemmer.js +22 -0
  521. package/build/languageProcessing/languages/fr/helpers/getStemmer.js.map +1 -0
  522. package/build/languageProcessing/languages/fr/helpers/internal/getParticiples.js +66 -0
  523. package/build/languageProcessing/languages/fr/helpers/internal/getParticiples.js.map +1 -0
  524. package/build/languageProcessing/languages/fr/helpers/internal/stem.js +537 -0
  525. package/build/languageProcessing/languages/fr/helpers/internal/stem.js.map +1 -0
  526. package/build/languageProcessing/languages/fr/values/Clause.js +84 -0
  527. package/build/languageProcessing/languages/fr/values/Clause.js.map +1 -0
  528. package/build/languageProcessing/languages/he/Researcher.js +51 -0
  529. package/build/languageProcessing/languages/he/Researcher.js.map +1 -0
  530. package/build/languageProcessing/languages/he/config/firstWordExceptions.js +12 -0
  531. package/build/languageProcessing/languages/he/config/firstWordExceptions.js.map +1 -0
  532. package/build/languageProcessing/languages/he/config/functionWords.js +497 -0
  533. package/build/languageProcessing/languages/he/config/functionWords.js.map +1 -0
  534. package/build/languageProcessing/languages/he/config/internal/regularRootsHufal.js +7 -0
  535. package/build/languageProcessing/languages/he/config/internal/regularRootsHufal.js.map +1 -0
  536. package/build/languageProcessing/languages/he/config/internal/regularRootsNifal.js +7 -0
  537. package/build/languageProcessing/languages/he/config/internal/regularRootsNifal.js.map +1 -0
  538. package/build/languageProcessing/languages/he/config/internal/regularRootsPual.js +7 -0
  539. package/build/languageProcessing/languages/he/config/internal/regularRootsPual.js.map +1 -0
  540. package/build/languageProcessing/languages/he/config/passiveVoice/regularRootsHufal.js +9 -0
  541. package/build/languageProcessing/languages/he/config/passiveVoice/regularRootsHufal.js.map +1 -0
  542. package/build/languageProcessing/languages/he/config/passiveVoice/regularRootsNifal.js +9 -0
  543. package/build/languageProcessing/languages/he/config/passiveVoice/regularRootsNifal.js.map +1 -0
  544. package/build/languageProcessing/languages/he/config/passiveVoice/regularRootsPual.js +9 -0
  545. package/build/languageProcessing/languages/he/config/passiveVoice/regularRootsPual.js.map +1 -0
  546. package/build/languageProcessing/languages/he/config/prefixedFunctionWords.js +3 -0
  547. package/build/languageProcessing/languages/he/config/prefixedFunctionWords.js.map +1 -0
  548. package/build/languageProcessing/languages/he/config/sentenceLength.js +4 -0
  549. package/build/languageProcessing/languages/he/config/sentenceLength.js.map +1 -0
  550. package/build/languageProcessing/languages/he/config/transitionWords.js +7 -0
  551. package/build/languageProcessing/languages/he/config/transitionWords.js.map +1 -0
  552. package/build/languageProcessing/languages/he/config/twoPartTransitionWords.js +8 -0
  553. package/build/languageProcessing/languages/he/config/twoPartTransitionWords.js.map +1 -0
  554. package/build/languageProcessing/languages/he/helpers/createBasicWordForms.js +35 -0
  555. package/build/languageProcessing/languages/he/helpers/createBasicWordForms.js.map +1 -0
  556. package/build/languageProcessing/languages/he/helpers/getStemmer.js +22 -0
  557. package/build/languageProcessing/languages/he/helpers/getStemmer.js.map +1 -0
  558. package/build/languageProcessing/languages/he/helpers/internal/stem.js +53 -0
  559. package/build/languageProcessing/languages/he/helpers/internal/stem.js.map +1 -0
  560. package/build/languageProcessing/languages/he/helpers/isPassiveSentence.js +116 -0
  561. package/build/languageProcessing/languages/he/helpers/isPassiveSentence.js.map +1 -0
  562. package/build/languageProcessing/languages/he/helpers/stem.js +53 -0
  563. package/build/languageProcessing/languages/he/helpers/stem.js.map +1 -0
  564. package/build/languageProcessing/languages/hu/Researcher.js +49 -0
  565. package/build/languageProcessing/languages/hu/Researcher.js.map +1 -0
  566. package/build/languageProcessing/languages/hu/config/firstWordExceptions.js +26 -0
  567. package/build/languageProcessing/languages/hu/config/firstWordExceptions.js.map +1 -0
  568. package/build/languageProcessing/languages/hu/config/functionWords.js +46 -0
  569. package/build/languageProcessing/languages/hu/config/functionWords.js.map +1 -0
  570. package/build/languageProcessing/languages/hu/config/internal/auxiliaries.js +14 -0
  571. package/build/languageProcessing/languages/hu/config/internal/auxiliaries.js.map +1 -0
  572. package/build/languageProcessing/languages/hu/config/internal/morphologicalPassiveAffixes.js +6 -0
  573. package/build/languageProcessing/languages/hu/config/internal/morphologicalPassiveAffixes.js.map +1 -0
  574. package/build/languageProcessing/languages/hu/config/internal/nonPassivesInVaAndVe.js +20 -0
  575. package/build/languageProcessing/languages/hu/config/internal/nonPassivesInVaAndVe.js.map +1 -0
  576. package/build/languageProcessing/languages/hu/config/internal/odikVerbs.js +19 -0
  577. package/build/languageProcessing/languages/hu/config/internal/odikVerbs.js.map +1 -0
  578. package/build/languageProcessing/languages/hu/config/internal/participles.js +20 -0
  579. package/build/languageProcessing/languages/hu/config/internal/participles.js.map +1 -0
  580. package/build/languageProcessing/languages/hu/config/stopWords.js +24 -0
  581. package/build/languageProcessing/languages/hu/config/stopWords.js.map +1 -0
  582. package/build/languageProcessing/languages/hu/config/transitionWords.js +7 -0
  583. package/build/languageProcessing/languages/hu/config/transitionWords.js.map +1 -0
  584. package/build/languageProcessing/languages/hu/config/twoPartTransitionWords.js +8 -0
  585. package/build/languageProcessing/languages/hu/config/twoPartTransitionWords.js.map +1 -0
  586. package/build/languageProcessing/languages/hu/helpers/getClauses.js +27 -0
  587. package/build/languageProcessing/languages/hu/helpers/getClauses.js.map +1 -0
  588. package/build/languageProcessing/languages/hu/helpers/getStemmer.js +22 -0
  589. package/build/languageProcessing/languages/hu/helpers/getStemmer.js.map +1 -0
  590. package/build/languageProcessing/languages/hu/helpers/internal/getParticiples.js +19 -0
  591. package/build/languageProcessing/languages/hu/helpers/internal/getParticiples.js.map +1 -0
  592. package/build/languageProcessing/languages/hu/helpers/internal/stem.js +384 -0
  593. package/build/languageProcessing/languages/hu/helpers/internal/stem.js.map +1 -0
  594. package/build/languageProcessing/languages/hu/helpers/isPassiveSentence.js +47 -0
  595. package/build/languageProcessing/languages/hu/helpers/isPassiveSentence.js.map +1 -0
  596. package/build/languageProcessing/languages/hu/values/Clause.js +41 -0
  597. package/build/languageProcessing/languages/hu/values/Clause.js.map +1 -0
  598. package/build/languageProcessing/languages/id/Researcher.js +47 -0
  599. package/build/languageProcessing/languages/id/Researcher.js.map +1 -0
  600. package/build/languageProcessing/languages/id/config/firstWordExceptions.js +12 -0
  601. package/build/languageProcessing/languages/id/config/firstWordExceptions.js.map +1 -0
  602. package/build/languageProcessing/languages/id/config/functionWords.js +101 -0
  603. package/build/languageProcessing/languages/id/config/functionWords.js.map +1 -0
  604. package/build/languageProcessing/languages/id/config/internal/nonPassiveVerbsStartingDi.js +7 -0
  605. package/build/languageProcessing/languages/id/config/internal/nonPassiveVerbsStartingDi.js.map +1 -0
  606. package/build/languageProcessing/languages/id/config/transitionWords.js +24 -0
  607. package/build/languageProcessing/languages/id/config/transitionWords.js.map +1 -0
  608. package/build/languageProcessing/languages/id/config/twoPartTransitionWords.js +9 -0
  609. package/build/languageProcessing/languages/id/config/twoPartTransitionWords.js.map +1 -0
  610. package/build/languageProcessing/languages/id/helpers/getStemmer.js +22 -0
  611. package/build/languageProcessing/languages/id/helpers/getStemmer.js.map +1 -0
  612. package/build/languageProcessing/languages/id/helpers/internal/stem.js +389 -0
  613. package/build/languageProcessing/languages/id/helpers/internal/stem.js.map +1 -0
  614. package/build/languageProcessing/languages/id/helpers/internal/stemHelpers.js +78 -0
  615. package/build/languageProcessing/languages/id/helpers/internal/stemHelpers.js.map +1 -0
  616. package/build/languageProcessing/languages/id/helpers/isPassiveSentence.js +40 -0
  617. package/build/languageProcessing/languages/id/helpers/isPassiveSentence.js.map +1 -0
  618. package/build/languageProcessing/languages/id/helpers/splitIntoTokensCustom.js +47 -0
  619. package/build/languageProcessing/languages/id/helpers/splitIntoTokensCustom.js.map +1 -0
  620. package/build/languageProcessing/languages/it/Researcher.js +49 -0
  621. package/build/languageProcessing/languages/it/Researcher.js.map +1 -0
  622. package/build/languageProcessing/languages/it/config/firstWordExceptions.js +14 -0
  623. package/build/languageProcessing/languages/it/config/firstWordExceptions.js.map +1 -0
  624. package/build/languageProcessing/languages/it/config/functionWords.js +135 -0
  625. package/build/languageProcessing/languages/it/config/functionWords.js.map +1 -0
  626. package/build/languageProcessing/languages/it/config/internal/passiveVoiceAuxiliaries.js +6 -0
  627. package/build/languageProcessing/languages/it/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
  628. package/build/languageProcessing/languages/it/config/internal/passiveVoiceParticiples.js +7 -0
  629. package/build/languageProcessing/languages/it/config/internal/passiveVoiceParticiples.js.map +1 -0
  630. package/build/languageProcessing/languages/it/config/sentenceLength.js +4 -0
  631. package/build/languageProcessing/languages/it/config/sentenceLength.js.map +1 -0
  632. package/build/languageProcessing/languages/it/config/stopWords.js +6 -0
  633. package/build/languageProcessing/languages/it/config/stopWords.js.map +1 -0
  634. package/build/languageProcessing/languages/it/config/syllables.json +573 -0
  635. package/build/languageProcessing/languages/it/config/transitionWords.js +7 -0
  636. package/build/languageProcessing/languages/it/config/transitionWords.js.map +1 -0
  637. package/build/languageProcessing/languages/it/config/twoPartTransitionWords.js +6 -0
  638. package/build/languageProcessing/languages/it/config/twoPartTransitionWords.js.map +1 -0
  639. package/build/languageProcessing/languages/it/helpers/calculateFleschReadingScore.js +17 -0
  640. package/build/languageProcessing/languages/it/helpers/calculateFleschReadingScore.js.map +1 -0
  641. package/build/languageProcessing/languages/it/helpers/getClauses.js +33 -0
  642. package/build/languageProcessing/languages/it/helpers/getClauses.js.map +1 -0
  643. package/build/languageProcessing/languages/it/helpers/getStemmer.js +22 -0
  644. package/build/languageProcessing/languages/it/helpers/getStemmer.js.map +1 -0
  645. package/build/languageProcessing/languages/it/helpers/internal/getParticiples.js +36 -0
  646. package/build/languageProcessing/languages/it/helpers/internal/getParticiples.js.map +1 -0
  647. package/build/languageProcessing/languages/it/helpers/internal/stem.js +402 -0
  648. package/build/languageProcessing/languages/it/helpers/internal/stem.js.map +1 -0
  649. package/build/languageProcessing/languages/it/values/Clause.js +44 -0
  650. package/build/languageProcessing/languages/it/values/Clause.js.map +1 -0
  651. package/build/languageProcessing/languages/ja/Researcher.js +86 -0
  652. package/build/languageProcessing/languages/ja/Researcher.js.map +1 -0
  653. package/build/languageProcessing/languages/ja/config/assessmentApplicabilityCharacterCount.js +5 -0
  654. package/build/languageProcessing/languages/ja/config/assessmentApplicabilityCharacterCount.js.map +1 -0
  655. package/build/languageProcessing/languages/ja/config/firstWordExceptions.js +8 -0
  656. package/build/languageProcessing/languages/ja/config/firstWordExceptions.js.map +1 -0
  657. package/build/languageProcessing/languages/ja/config/functionWords.js +2 -0
  658. package/build/languageProcessing/languages/ja/config/functionWords.js.map +1 -0
  659. package/build/languageProcessing/languages/ja/config/keyphraseLength.js +17 -0
  660. package/build/languageProcessing/languages/ja/config/keyphraseLength.js.map +1 -0
  661. package/build/languageProcessing/languages/ja/config/metaDescriptionLength.js +5 -0
  662. package/build/languageProcessing/languages/ja/config/metaDescriptionLength.js.map +1 -0
  663. package/build/languageProcessing/languages/ja/config/paragraphLength.js +11 -0
  664. package/build/languageProcessing/languages/ja/config/paragraphLength.js.map +1 -0
  665. package/build/languageProcessing/languages/ja/config/sentenceLength.js +5 -0
  666. package/build/languageProcessing/languages/ja/config/sentenceLength.js.map +1 -0
  667. package/build/languageProcessing/languages/ja/config/subheadingsTooLong.js +19 -0
  668. package/build/languageProcessing/languages/ja/config/subheadingsTooLong.js.map +1 -0
  669. package/build/languageProcessing/languages/ja/config/textLength.js +48 -0
  670. package/build/languageProcessing/languages/ja/config/textLength.js.map +1 -0
  671. package/build/languageProcessing/languages/ja/config/topicLength.js +6 -0
  672. package/build/languageProcessing/languages/ja/config/topicLength.js.map +1 -0
  673. package/build/languageProcessing/languages/ja/config/transitionWords.js +4 -0
  674. package/build/languageProcessing/languages/ja/config/transitionWords.js.map +1 -0
  675. package/build/languageProcessing/languages/ja/customResearches/findKeyphraseInSEOTitle.js +96 -0
  676. package/build/languageProcessing/languages/ja/customResearches/findKeyphraseInSEOTitle.js.map +1 -0
  677. package/build/languageProcessing/languages/ja/customResearches/getKeyphraseLength.js +19 -0
  678. package/build/languageProcessing/languages/ja/customResearches/getKeyphraseLength.js.map +1 -0
  679. package/build/languageProcessing/languages/ja/customResearches/getWordForms.js +51 -0
  680. package/build/languageProcessing/languages/ja/customResearches/getWordForms.js.map +1 -0
  681. package/build/languageProcessing/languages/ja/customResearches/textLength.js +25 -0
  682. package/build/languageProcessing/languages/ja/customResearches/textLength.js.map +1 -0
  683. package/build/languageProcessing/languages/ja/helpers/countCharacters.js +21 -0
  684. package/build/languageProcessing/languages/ja/helpers/countCharacters.js.map +1 -0
  685. package/build/languageProcessing/languages/ja/helpers/customGetStemmer.js +22 -0
  686. package/build/languageProcessing/languages/ja/helpers/customGetStemmer.js.map +1 -0
  687. package/build/languageProcessing/languages/ja/helpers/getContentWords.js +21 -0
  688. package/build/languageProcessing/languages/ja/helpers/getContentWords.js.map +1 -0
  689. package/build/languageProcessing/languages/ja/helpers/getWords.js +31 -0
  690. package/build/languageProcessing/languages/ja/helpers/getWords.js.map +1 -0
  691. package/build/languageProcessing/languages/ja/helpers/internal/SentenceTokenizer.js +92 -0
  692. package/build/languageProcessing/languages/ja/helpers/internal/SentenceTokenizer.js.map +1 -0
  693. package/build/languageProcessing/languages/ja/helpers/internal/createWordForms.js +65 -0
  694. package/build/languageProcessing/languages/ja/helpers/internal/createWordForms.js.map +1 -0
  695. package/build/languageProcessing/languages/ja/helpers/internal/determineStem.js +17 -0
  696. package/build/languageProcessing/languages/ja/helpers/internal/determineStem.js.map +1 -0
  697. package/build/languageProcessing/languages/ja/helpers/matchTextWithWord.js +52 -0
  698. package/build/languageProcessing/languages/ja/helpers/matchTextWithWord.js.map +1 -0
  699. package/build/languageProcessing/languages/ja/helpers/matchTransitionWords.js +23 -0
  700. package/build/languageProcessing/languages/ja/helpers/matchTransitionWords.js.map +1 -0
  701. package/build/languageProcessing/languages/ja/helpers/memoizedSentenceTokenizer.js +31 -0
  702. package/build/languageProcessing/languages/ja/helpers/memoizedSentenceTokenizer.js.map +1 -0
  703. package/build/languageProcessing/languages/ja/helpers/splitIntoTokensCustom.js +21 -0
  704. package/build/languageProcessing/languages/ja/helpers/splitIntoTokensCustom.js.map +1 -0
  705. package/build/languageProcessing/languages/ja/helpers/wordsCharacterCount.js +13 -0
  706. package/build/languageProcessing/languages/ja/helpers/wordsCharacterCount.js.map +1 -0
  707. package/build/languageProcessing/languages/nb/Researcher.js +46 -0
  708. package/build/languageProcessing/languages/nb/Researcher.js.map +1 -0
  709. package/build/languageProcessing/languages/nb/config/firstWordExceptions.js +12 -0
  710. package/build/languageProcessing/languages/nb/config/firstWordExceptions.js.map +1 -0
  711. package/build/languageProcessing/languages/nb/config/functionWords.js +48 -0
  712. package/build/languageProcessing/languages/nb/config/functionWords.js.map +1 -0
  713. package/build/languageProcessing/languages/nb/config/internal/participles.js +7 -0
  714. package/build/languageProcessing/languages/nb/config/internal/participles.js.map +1 -0
  715. package/build/languageProcessing/languages/nb/config/internal/passiveVoiceAuxiliaries.js +6 -0
  716. package/build/languageProcessing/languages/nb/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
  717. package/build/languageProcessing/languages/nb/config/stopWords.js +7 -0
  718. package/build/languageProcessing/languages/nb/config/stopWords.js.map +1 -0
  719. package/build/languageProcessing/languages/nb/config/transitionWords.js +7 -0
  720. package/build/languageProcessing/languages/nb/config/transitionWords.js.map +1 -0
  721. package/build/languageProcessing/languages/nb/config/twoPartTransitionWords.js +8 -0
  722. package/build/languageProcessing/languages/nb/config/twoPartTransitionWords.js.map +1 -0
  723. package/build/languageProcessing/languages/nb/helpers/getClauses.js +30 -0
  724. package/build/languageProcessing/languages/nb/helpers/getClauses.js.map +1 -0
  725. package/build/languageProcessing/languages/nb/helpers/getStemmer.js +22 -0
  726. package/build/languageProcessing/languages/nb/helpers/getStemmer.js.map +1 -0
  727. package/build/languageProcessing/languages/nb/helpers/internal/getParticiples.js +25 -0
  728. package/build/languageProcessing/languages/nb/helpers/internal/getParticiples.js.map +1 -0
  729. package/build/languageProcessing/languages/nb/helpers/internal/stem.js +129 -0
  730. package/build/languageProcessing/languages/nb/helpers/internal/stem.js.map +1 -0
  731. package/build/languageProcessing/languages/nb/values/Clause.js +43 -0
  732. package/build/languageProcessing/languages/nb/values/Clause.js.map +1 -0
  733. package/build/languageProcessing/languages/nl/Researcher.js +49 -0
  734. package/build/languageProcessing/languages/nl/Researcher.js.map +1 -0
  735. package/build/languageProcessing/languages/nl/config/firstWordExceptions.js +14 -0
  736. package/build/languageProcessing/languages/nl/config/firstWordExceptions.js.map +1 -0
  737. package/build/languageProcessing/languages/nl/config/functionWords.js +96 -0
  738. package/build/languageProcessing/languages/nl/config/functionWords.js.map +1 -0
  739. package/build/languageProcessing/languages/nl/config/internal/nonParticiples.js +6 -0
  740. package/build/languageProcessing/languages/nl/config/internal/nonParticiples.js.map +1 -0
  741. package/build/languageProcessing/languages/nl/config/internal/passiveVoiceAuxiliaries.js +6 -0
  742. package/build/languageProcessing/languages/nl/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
  743. package/build/languageProcessing/languages/nl/config/internal/passiveVoiceIrregulars.js +7 -0
  744. package/build/languageProcessing/languages/nl/config/internal/passiveVoiceIrregulars.js.map +1 -0
  745. package/build/languageProcessing/languages/nl/config/keyphraseLength.js +11 -0
  746. package/build/languageProcessing/languages/nl/config/keyphraseLength.js.map +1 -0
  747. package/build/languageProcessing/languages/nl/config/stopWords.js +6 -0
  748. package/build/languageProcessing/languages/nl/config/stopWords.js.map +1 -0
  749. package/build/languageProcessing/languages/nl/config/syllables.json +343 -0
  750. package/build/languageProcessing/languages/nl/config/transitionWords.js +5 -0
  751. package/build/languageProcessing/languages/nl/config/transitionWords.js.map +1 -0
  752. package/build/languageProcessing/languages/nl/config/twoPartTransitionWords.js +6 -0
  753. package/build/languageProcessing/languages/nl/config/twoPartTransitionWords.js.map +1 -0
  754. package/build/languageProcessing/languages/nl/helpers/calculateFleschReadingScore.js +17 -0
  755. package/build/languageProcessing/languages/nl/helpers/calculateFleschReadingScore.js.map +1 -0
  756. package/build/languageProcessing/languages/nl/helpers/getClauses.js +27 -0
  757. package/build/languageProcessing/languages/nl/helpers/getClauses.js.map +1 -0
  758. package/build/languageProcessing/languages/nl/helpers/getStemmer.js +22 -0
  759. package/build/languageProcessing/languages/nl/helpers/getStemmer.js.map +1 -0
  760. package/build/languageProcessing/languages/nl/helpers/internal/checkExceptionsWithFullForms.js +118 -0
  761. package/build/languageProcessing/languages/nl/helpers/internal/checkExceptionsWithFullForms.js.map +1 -0
  762. package/build/languageProcessing/languages/nl/helpers/internal/detectAndStemRegularParticiple.js +254 -0
  763. package/build/languageProcessing/languages/nl/helpers/internal/detectAndStemRegularParticiple.js.map +1 -0
  764. package/build/languageProcessing/languages/nl/helpers/internal/detectAndStemSuffixes.js +152 -0
  765. package/build/languageProcessing/languages/nl/helpers/internal/detectAndStemSuffixes.js.map +1 -0
  766. package/build/languageProcessing/languages/nl/helpers/internal/determineStem.js +114 -0
  767. package/build/languageProcessing/languages/nl/helpers/internal/determineStem.js.map +1 -0
  768. package/build/languageProcessing/languages/nl/helpers/internal/getParticiples.js +21 -0
  769. package/build/languageProcessing/languages/nl/helpers/internal/getParticiples.js.map +1 -0
  770. package/build/languageProcessing/languages/nl/helpers/internal/getStemWordsWithTAndDEnding.js +147 -0
  771. package/build/languageProcessing/languages/nl/helpers/internal/getStemWordsWithTAndDEnding.js.map +1 -0
  772. package/build/languageProcessing/languages/nl/helpers/internal/stem.js +125 -0
  773. package/build/languageProcessing/languages/nl/helpers/internal/stem.js.map +1 -0
  774. package/build/languageProcessing/languages/nl/helpers/internal/stemModificationHelpers.js +87 -0
  775. package/build/languageProcessing/languages/nl/helpers/internal/stemModificationHelpers.js.map +1 -0
  776. package/build/languageProcessing/languages/nl/helpers/internal/stemTOrDFromEndOfWord.js +53 -0
  777. package/build/languageProcessing/languages/nl/helpers/internal/stemTOrDFromEndOfWord.js.map +1 -0
  778. package/build/languageProcessing/languages/nl/values/Clause.js +57 -0
  779. package/build/languageProcessing/languages/nl/values/Clause.js.map +1 -0
  780. package/build/languageProcessing/languages/pl/Researcher.js +48 -0
  781. package/build/languageProcessing/languages/pl/Researcher.js.map +1 -0
  782. package/build/languageProcessing/languages/pl/config/firstWordExceptions.js +10 -0
  783. package/build/languageProcessing/languages/pl/config/firstWordExceptions.js.map +1 -0
  784. package/build/languageProcessing/languages/pl/config/functionWords.js +71 -0
  785. package/build/languageProcessing/languages/pl/config/functionWords.js.map +1 -0
  786. package/build/languageProcessing/languages/pl/config/internal/auxiliaries.js +6 -0
  787. package/build/languageProcessing/languages/pl/config/internal/auxiliaries.js.map +1 -0
  788. package/build/languageProcessing/languages/pl/config/internal/participles.js +7 -0
  789. package/build/languageProcessing/languages/pl/config/internal/participles.js.map +1 -0
  790. package/build/languageProcessing/languages/pl/config/sentenceLength.js +11 -0
  791. package/build/languageProcessing/languages/pl/config/sentenceLength.js.map +1 -0
  792. package/build/languageProcessing/languages/pl/config/stopWords.js +6 -0
  793. package/build/languageProcessing/languages/pl/config/stopWords.js.map +1 -0
  794. package/build/languageProcessing/languages/pl/config/transitionWords.js +7 -0
  795. package/build/languageProcessing/languages/pl/config/transitionWords.js.map +1 -0
  796. package/build/languageProcessing/languages/pl/config/twoPartTransitionWords.js +8 -0
  797. package/build/languageProcessing/languages/pl/config/twoPartTransitionWords.js.map +1 -0
  798. package/build/languageProcessing/languages/pl/helpers/getClauses.js +27 -0
  799. package/build/languageProcessing/languages/pl/helpers/getClauses.js.map +1 -0
  800. package/build/languageProcessing/languages/pl/helpers/getStemmer.js +22 -0
  801. package/build/languageProcessing/languages/pl/helpers/getStemmer.js.map +1 -0
  802. package/build/languageProcessing/languages/pl/helpers/internal/getParticiples.js +19 -0
  803. package/build/languageProcessing/languages/pl/helpers/internal/getParticiples.js.map +1 -0
  804. package/build/languageProcessing/languages/pl/helpers/internal/stem.js +152 -0
  805. package/build/languageProcessing/languages/pl/helpers/internal/stem.js.map +1 -0
  806. package/build/languageProcessing/languages/pl/values/Clause.js +45 -0
  807. package/build/languageProcessing/languages/pl/values/Clause.js.map +1 -0
  808. package/build/languageProcessing/languages/pt/Researcher.js +49 -0
  809. package/build/languageProcessing/languages/pt/Researcher.js.map +1 -0
  810. package/build/languageProcessing/languages/pt/config/firstWordExceptions.js +14 -0
  811. package/build/languageProcessing/languages/pt/config/firstWordExceptions.js.map +1 -0
  812. package/build/languageProcessing/languages/pt/config/functionWords.js +92 -0
  813. package/build/languageProcessing/languages/pt/config/functionWords.js.map +1 -0
  814. package/build/languageProcessing/languages/pt/config/internal/passiveVoiceAuxiliaries.js +6 -0
  815. package/build/languageProcessing/languages/pt/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
  816. package/build/languageProcessing/languages/pt/config/internal/passiveVoiceParticiples.js +7 -0
  817. package/build/languageProcessing/languages/pt/config/internal/passiveVoiceParticiples.js.map +1 -0
  818. package/build/languageProcessing/languages/pt/config/sentenceLength.js +4 -0
  819. package/build/languageProcessing/languages/pt/config/sentenceLength.js.map +1 -0
  820. package/build/languageProcessing/languages/pt/config/stopWords.js +6 -0
  821. package/build/languageProcessing/languages/pt/config/stopWords.js.map +1 -0
  822. package/build/languageProcessing/languages/pt/config/syllables.json +38 -0
  823. package/build/languageProcessing/languages/pt/config/transitionWords.js +5 -0
  824. package/build/languageProcessing/languages/pt/config/transitionWords.js.map +1 -0
  825. package/build/languageProcessing/languages/pt/config/twoPartTransitionWords.js +6 -0
  826. package/build/languageProcessing/languages/pt/config/twoPartTransitionWords.js.map +1 -0
  827. package/build/languageProcessing/languages/pt/helpers/calculateFleschReadingScore.js +17 -0
  828. package/build/languageProcessing/languages/pt/helpers/calculateFleschReadingScore.js.map +1 -0
  829. package/build/languageProcessing/languages/pt/helpers/getClauses.js +31 -0
  830. package/build/languageProcessing/languages/pt/helpers/getClauses.js.map +1 -0
  831. package/build/languageProcessing/languages/pt/helpers/getStemmer.js +22 -0
  832. package/build/languageProcessing/languages/pt/helpers/getStemmer.js.map +1 -0
  833. package/build/languageProcessing/languages/pt/helpers/internal/getParticiples.js +37 -0
  834. package/build/languageProcessing/languages/pt/helpers/internal/getParticiples.js.map +1 -0
  835. package/build/languageProcessing/languages/pt/helpers/internal/stem.js +277 -0
  836. package/build/languageProcessing/languages/pt/helpers/internal/stem.js.map +1 -0
  837. package/build/languageProcessing/languages/pt/values/Clause.js +43 -0
  838. package/build/languageProcessing/languages/pt/values/Clause.js.map +1 -0
  839. package/build/languageProcessing/languages/ru/Researcher.js +49 -0
  840. package/build/languageProcessing/languages/ru/Researcher.js.map +1 -0
  841. package/build/languageProcessing/languages/ru/config/firstWordExceptions.js +10 -0
  842. package/build/languageProcessing/languages/ru/config/firstWordExceptions.js.map +1 -0
  843. package/build/languageProcessing/languages/ru/config/fleschReadingEaseScores.js +21 -0
  844. package/build/languageProcessing/languages/ru/config/fleschReadingEaseScores.js.map +1 -0
  845. package/build/languageProcessing/languages/ru/config/functionWords.js +85 -0
  846. package/build/languageProcessing/languages/ru/config/functionWords.js.map +1 -0
  847. package/build/languageProcessing/languages/ru/config/internal/participlesShortenedList.js +21 -0
  848. package/build/languageProcessing/languages/ru/config/internal/participlesShortenedList.js.map +1 -0
  849. package/build/languageProcessing/languages/ru/config/internal/passiveVoiceParticiples.js +18 -0
  850. package/build/languageProcessing/languages/ru/config/internal/passiveVoiceParticiples.js.map +1 -0
  851. package/build/languageProcessing/languages/ru/config/sentenceLength.js +4 -0
  852. package/build/languageProcessing/languages/ru/config/sentenceLength.js.map +1 -0
  853. package/build/languageProcessing/languages/ru/config/syllables.json +19 -0
  854. package/build/languageProcessing/languages/ru/config/transitionWords.js +7 -0
  855. package/build/languageProcessing/languages/ru/config/transitionWords.js.map +1 -0
  856. package/build/languageProcessing/languages/ru/config/twoPartTransitionWords.js +8 -0
  857. package/build/languageProcessing/languages/ru/config/twoPartTransitionWords.js.map +1 -0
  858. package/build/languageProcessing/languages/ru/helpers/calculateFleschReadingScore.js +17 -0
  859. package/build/languageProcessing/languages/ru/helpers/calculateFleschReadingScore.js.map +1 -0
  860. package/build/languageProcessing/languages/ru/helpers/getStemmer.js +22 -0
  861. package/build/languageProcessing/languages/ru/helpers/getStemmer.js.map +1 -0
  862. package/build/languageProcessing/languages/ru/helpers/internal/stem.js +265 -0
  863. package/build/languageProcessing/languages/ru/helpers/internal/stem.js.map +1 -0
  864. package/build/languageProcessing/languages/ru/helpers/isPassiveSentence.js +16 -0
  865. package/build/languageProcessing/languages/ru/helpers/isPassiveSentence.js.map +1 -0
  866. package/build/languageProcessing/languages/sk/Researcher.js +47 -0
  867. package/build/languageProcessing/languages/sk/Researcher.js.map +1 -0
  868. package/build/languageProcessing/languages/sk/config/firstWordExceptions.js +12 -0
  869. package/build/languageProcessing/languages/sk/config/firstWordExceptions.js.map +1 -0
  870. package/build/languageProcessing/languages/sk/config/functionWords.js +12 -0
  871. package/build/languageProcessing/languages/sk/config/functionWords.js.map +1 -0
  872. package/build/languageProcessing/languages/sk/config/internal/nonPassives.js +8 -0
  873. package/build/languageProcessing/languages/sk/config/internal/nonPassives.js.map +1 -0
  874. package/build/languageProcessing/languages/sk/config/internal/passiveVoiceAuxiliaries.js +4 -0
  875. package/build/languageProcessing/languages/sk/config/internal/passiveVoiceAuxiliaries.js.map +1 -0
  876. package/build/languageProcessing/languages/sk/config/stopWords.js +7 -0
  877. package/build/languageProcessing/languages/sk/config/stopWords.js.map +1 -0
  878. package/build/languageProcessing/languages/sk/config/transitionWords.js +7 -0
  879. package/build/languageProcessing/languages/sk/config/transitionWords.js.map +1 -0
  880. package/build/languageProcessing/languages/sk/config/twoPartTransitionWords.js +8 -0
  881. package/build/languageProcessing/languages/sk/config/twoPartTransitionWords.js.map +1 -0
  882. package/build/languageProcessing/languages/sk/helpers/getClauses.js +28 -0
  883. package/build/languageProcessing/languages/sk/helpers/getClauses.js.map +1 -0
  884. package/build/languageProcessing/languages/sk/helpers/getStemmer.js +22 -0
  885. package/build/languageProcessing/languages/sk/helpers/getStemmer.js.map +1 -0
  886. package/build/languageProcessing/languages/sk/helpers/internal/getParticiples.js +18 -0
  887. package/build/languageProcessing/languages/sk/helpers/internal/getParticiples.js.map +1 -0
  888. package/build/languageProcessing/languages/sk/helpers/internal/stem.js +316 -0
  889. package/build/languageProcessing/languages/sk/helpers/internal/stem.js.map +1 -0
  890. package/build/languageProcessing/languages/sk/values/Clause.js +41 -0
  891. package/build/languageProcessing/languages/sk/values/Clause.js.map +1 -0
  892. package/build/languageProcessing/languages/sv/Researcher.js +46 -0
  893. package/build/languageProcessing/languages/sv/Researcher.js.map +1 -0
  894. package/build/languageProcessing/languages/sv/config/firstWordExceptions.js +15 -0
  895. package/build/languageProcessing/languages/sv/config/firstWordExceptions.js.map +1 -0
  896. package/build/languageProcessing/languages/sv/config/functionWords.js +68 -0
  897. package/build/languageProcessing/languages/sv/config/functionWords.js.map +1 -0
  898. package/build/languageProcessing/languages/sv/config/internal/passiveVerbs.js +7 -0
  899. package/build/languageProcessing/languages/sv/config/internal/passiveVerbs.js.map +1 -0
  900. package/build/languageProcessing/languages/sv/config/keyphraseLength.js +11 -0
  901. package/build/languageProcessing/languages/sv/config/keyphraseLength.js.map +1 -0
  902. package/build/languageProcessing/languages/sv/config/transitionWords.js +7 -0
  903. package/build/languageProcessing/languages/sv/config/transitionWords.js.map +1 -0
  904. package/build/languageProcessing/languages/sv/config/twoPartTransitionWords.js +8 -0
  905. package/build/languageProcessing/languages/sv/config/twoPartTransitionWords.js.map +1 -0
  906. package/build/languageProcessing/languages/sv/helpers/getStemmer.js +22 -0
  907. package/build/languageProcessing/languages/sv/helpers/getStemmer.js.map +1 -0
  908. package/build/languageProcessing/languages/sv/helpers/internal/stem.js +153 -0
  909. package/build/languageProcessing/languages/sv/helpers/internal/stem.js.map +1 -0
  910. package/build/languageProcessing/languages/sv/helpers/isPassiveSentence.js +16 -0
  911. package/build/languageProcessing/languages/sv/helpers/isPassiveSentence.js.map +1 -0
  912. package/build/languageProcessing/languages/tr/Researcher.js +44 -0
  913. package/build/languageProcessing/languages/tr/Researcher.js.map +1 -0
  914. package/build/languageProcessing/languages/tr/config/firstWordExceptions.js +12 -0
  915. package/build/languageProcessing/languages/tr/config/firstWordExceptions.js.map +1 -0
  916. package/build/languageProcessing/languages/tr/config/functionWords.js +45 -0
  917. package/build/languageProcessing/languages/tr/config/functionWords.js.map +1 -0
  918. package/build/languageProcessing/languages/tr/config/internal/nonPassiveExceptions.js +8 -0
  919. package/build/languageProcessing/languages/tr/config/internal/nonPassiveExceptions.js.map +1 -0
  920. package/build/languageProcessing/languages/tr/config/internal/passiveEndings.js +7 -0
  921. package/build/languageProcessing/languages/tr/config/internal/passiveEndings.js.map +1 -0
  922. package/build/languageProcessing/languages/tr/config/sentenceLength.js +8 -0
  923. package/build/languageProcessing/languages/tr/config/sentenceLength.js.map +1 -0
  924. package/build/languageProcessing/languages/tr/config/transitionWords.js +7 -0
  925. package/build/languageProcessing/languages/tr/config/transitionWords.js.map +1 -0
  926. package/build/languageProcessing/languages/tr/config/twoPartTransitionWords.js +8 -0
  927. package/build/languageProcessing/languages/tr/config/twoPartTransitionWords.js.map +1 -0
  928. package/build/languageProcessing/languages/tr/helpers/getStemmer.js +22 -0
  929. package/build/languageProcessing/languages/tr/helpers/getStemmer.js.map +1 -0
  930. package/build/languageProcessing/languages/tr/helpers/internal/stem.js +19 -0
  931. package/build/languageProcessing/languages/tr/helpers/internal/stem.js.map +1 -0
  932. package/build/languageProcessing/languages/tr/helpers/isPassiveSentence.js +40 -0
  933. package/build/languageProcessing/languages/tr/helpers/isPassiveSentence.js.map +1 -0
  934. package/build/languageProcessing/researches/altTagCount.js +66 -0
  935. package/build/languageProcessing/researches/altTagCount.js.map +1 -0
  936. package/build/languageProcessing/researches/checkRelatedKeywords.js +71 -0
  937. package/build/languageProcessing/researches/checkRelatedKeywords.js.map +1 -0
  938. package/build/languageProcessing/researches/countSentencesFromText.js +20 -0
  939. package/build/languageProcessing/researches/countSentencesFromText.js.map +1 -0
  940. package/build/languageProcessing/researches/findKeyphraseInSEOTitle.js +250 -0
  941. package/build/languageProcessing/researches/findKeyphraseInSEOTitle.js.map +1 -0
  942. package/build/languageProcessing/researches/findKeywordInFirstParagraph.js +74 -0
  943. package/build/languageProcessing/researches/findKeywordInFirstParagraph.js.map +1 -0
  944. package/build/languageProcessing/researches/findTransitionWords.js +112 -0
  945. package/build/languageProcessing/researches/findTransitionWords.js.map +1 -0
  946. package/build/languageProcessing/researches/functionWordsInKeyphrase.js +42 -0
  947. package/build/languageProcessing/researches/functionWordsInKeyphrase.js.map +1 -0
  948. package/build/languageProcessing/researches/getAnchorsWithKeyphrase.js +215 -0
  949. package/build/languageProcessing/researches/getAnchorsWithKeyphrase.js.map +1 -0
  950. package/build/languageProcessing/researches/getFleschReadingScore.js +145 -0
  951. package/build/languageProcessing/researches/getFleschReadingScore.js.map +1 -0
  952. package/build/languageProcessing/researches/getKeywordDensity.js +42 -0
  953. package/build/languageProcessing/researches/getKeywordDensity.js.map +1 -0
  954. package/build/languageProcessing/researches/getLinkStatistics.js +50 -0
  955. package/build/languageProcessing/researches/getLinkStatistics.js.map +1 -0
  956. package/build/languageProcessing/researches/getLinks.js +17 -0
  957. package/build/languageProcessing/researches/getLinks.js.map +1 -0
  958. package/build/languageProcessing/researches/getLongCenterAlignedTexts.js +36 -0
  959. package/build/languageProcessing/researches/getLongCenterAlignedTexts.js.map +1 -0
  960. package/build/languageProcessing/researches/getParagraphLength.js +43 -0
  961. package/build/languageProcessing/researches/getParagraphLength.js.map +1 -0
  962. package/build/languageProcessing/researches/getParagraphs.js +18 -0
  963. package/build/languageProcessing/researches/getParagraphs.js.map +1 -0
  964. package/build/languageProcessing/researches/getPassiveVoiceResult.js +118 -0
  965. package/build/languageProcessing/researches/getPassiveVoiceResult.js.map +1 -0
  966. package/build/languageProcessing/researches/getProminentWordsForInsights.js +39 -0
  967. package/build/languageProcessing/researches/getProminentWordsForInsights.js.map +1 -0
  968. package/build/languageProcessing/researches/getProminentWordsForInternalLinking.js +97 -0
  969. package/build/languageProcessing/researches/getProminentWordsForInternalLinking.js.map +1 -0
  970. package/build/languageProcessing/researches/getSentenceBeginnings.js +116 -0
  971. package/build/languageProcessing/researches/getSentenceBeginnings.js.map +1 -0
  972. package/build/languageProcessing/researches/getSubheadingTextLengths.js +54 -0
  973. package/build/languageProcessing/researches/getSubheadingTextLengths.js.map +1 -0
  974. package/build/languageProcessing/researches/getWordForms.js +177 -0
  975. package/build/languageProcessing/researches/getWordForms.js.map +1 -0
  976. package/build/languageProcessing/researches/h1s.js +11 -0
  977. package/build/languageProcessing/researches/h1s.js.map +1 -0
  978. package/build/languageProcessing/researches/imageCount.js +16 -0
  979. package/build/languageProcessing/researches/imageCount.js.map +1 -0
  980. package/build/languageProcessing/researches/index.js +5 -0
  981. package/build/languageProcessing/researches/index.js.map +1 -0
  982. package/build/languageProcessing/researches/keyphraseDistribution.js +223 -0
  983. package/build/languageProcessing/researches/keyphraseDistribution.js.map +1 -0
  984. package/build/languageProcessing/researches/keyphraseLength.js +17 -0
  985. package/build/languageProcessing/researches/keyphraseLength.js.map +1 -0
  986. package/build/languageProcessing/researches/keywordCount.js +127 -0
  987. package/build/languageProcessing/researches/keywordCount.js.map +1 -0
  988. package/build/languageProcessing/researches/keywordCountInUrl.js +50 -0
  989. package/build/languageProcessing/researches/keywordCountInUrl.js.map +1 -0
  990. package/build/languageProcessing/researches/matchKeywordInSubheadings.js +62 -0
  991. package/build/languageProcessing/researches/matchKeywordInSubheadings.js.map +1 -0
  992. package/build/languageProcessing/researches/metaDescriptionKeyword.js +72 -0
  993. package/build/languageProcessing/researches/metaDescriptionKeyword.js.map +1 -0
  994. package/build/languageProcessing/researches/metaDescriptionLength.js +13 -0
  995. package/build/languageProcessing/researches/metaDescriptionLength.js.map +1 -0
  996. package/build/languageProcessing/researches/pageTitleWidth.js +12 -0
  997. package/build/languageProcessing/researches/pageTitleWidth.js.map +1 -0
  998. package/build/languageProcessing/researches/readingTime.js +78 -0
  999. package/build/languageProcessing/researches/readingTime.js.map +1 -0
  1000. package/build/languageProcessing/researches/sentences.js +20 -0
  1001. package/build/languageProcessing/researches/sentences.js.map +1 -0
  1002. package/build/languageProcessing/researches/videoCount.js +33 -0
  1003. package/build/languageProcessing/researches/videoCount.js.map +1 -0
  1004. package/build/languageProcessing/researches/wordComplexity.js +122 -0
  1005. package/build/languageProcessing/researches/wordComplexity.js.map +1 -0
  1006. package/build/languageProcessing/researches/wordCountInText.js +30 -0
  1007. package/build/languageProcessing/researches/wordCountInText.js.map +1 -0
  1008. package/build/languageProcessing/values/Clause.js +107 -0
  1009. package/build/languageProcessing/values/Clause.js.map +1 -0
  1010. package/build/languageProcessing/values/ProminentWord.js +95 -0
  1011. package/build/languageProcessing/values/ProminentWord.js.map +1 -0
  1012. package/build/languageProcessing/values/Sentence.js +110 -0
  1013. package/build/languageProcessing/values/Sentence.js.map +1 -0
  1014. package/build/languageProcessing/values/index.js +5 -0
  1015. package/build/languageProcessing/values/index.js.map +1 -0
  1016. package/build/markers/addMark.js +10 -0
  1017. package/build/markers/addMark.js.map +1 -0
  1018. package/build/markers/addMarkSingleWord.js +32 -0
  1019. package/build/markers/addMarkSingleWord.js.map +1 -0
  1020. package/build/markers/index.js +4 -0
  1021. package/build/markers/index.js.map +1 -0
  1022. package/build/markers/removeDuplicateMarks.js +26 -0
  1023. package/build/markers/removeDuplicateMarks.js.map +1 -0
  1024. package/build/markers/removeMarks.js +10 -0
  1025. package/build/markers/removeMarks.js.map +1 -0
  1026. package/build/parse/build/build.js +54 -0
  1027. package/build/parse/build/build.js.map +1 -0
  1028. package/build/parse/build/index.js +9 -0
  1029. package/build/parse/build/index.js.map +1 -0
  1030. package/build/parse/build/private/adapt.js +105 -0
  1031. package/build/parse/build/private/adapt.js.map +1 -0
  1032. package/build/parse/build/private/adaptAttributes.js +35 -0
  1033. package/build/parse/build/private/adaptAttributes.js.map +1 -0
  1034. package/build/parse/build/private/alwaysFilterElements.js +27 -0
  1035. package/build/parse/build/private/alwaysFilterElements.js.map +1 -0
  1036. package/build/parse/build/private/combineIntoImplicitParagraphs.js +123 -0
  1037. package/build/parse/build/private/combineIntoImplicitParagraphs.js.map +1 -0
  1038. package/build/parse/build/private/filterBeforeTokenizing.js +32 -0
  1039. package/build/parse/build/private/filterBeforeTokenizing.js.map +1 -0
  1040. package/build/parse/build/private/filterHelpers.js +44 -0
  1041. package/build/parse/build/private/filterHelpers.js.map +1 -0
  1042. package/build/parse/build/private/filterTree.js +42 -0
  1043. package/build/parse/build/private/filterTree.js.map +1 -0
  1044. package/build/parse/build/private/getTextElementPositions.js +179 -0
  1045. package/build/parse/build/private/getTextElementPositions.js.map +1 -0
  1046. package/build/parse/build/private/helpers/parseClassAttribute.js +9 -0
  1047. package/build/parse/build/private/helpers/parseClassAttribute.js.map +1 -0
  1048. package/build/parse/build/private/isPhrasingContent.js +24 -0
  1049. package/build/parse/build/private/isPhrasingContent.js.map +1 -0
  1050. package/build/parse/build/private/parseBlocks.js +144 -0
  1051. package/build/parse/build/private/parseBlocks.js.map +1 -0
  1052. package/build/parse/build/private/tokenize.js +72 -0
  1053. package/build/parse/build/private/tokenize.js.map +1 -0
  1054. package/build/parse/language/LanguageProcessor.js +70 -0
  1055. package/build/parse/language/LanguageProcessor.js.map +1 -0
  1056. package/build/parse/structure/Heading.js +26 -0
  1057. package/build/parse/structure/Heading.js.map +1 -0
  1058. package/build/parse/structure/Node.js +69 -0
  1059. package/build/parse/structure/Node.js.map +1 -0
  1060. package/build/parse/structure/Paragraph.js +47 -0
  1061. package/build/parse/structure/Paragraph.js.map +1 -0
  1062. package/build/parse/structure/Sentence.js +30 -0
  1063. package/build/parse/structure/Sentence.js.map +1 -0
  1064. package/build/parse/structure/SourceCodeLocation.js +40 -0
  1065. package/build/parse/structure/SourceCodeLocation.js.map +1 -0
  1066. package/build/parse/structure/Text.js +26 -0
  1067. package/build/parse/structure/Text.js.map +1 -0
  1068. package/build/parse/structure/Token.js +24 -0
  1069. package/build/parse/structure/Token.js.map +1 -0
  1070. package/build/parse/structure/index.js +12 -0
  1071. package/build/parse/structure/index.js.map +1 -0
  1072. package/build/parse/traverse/findAllInTree.js +56 -0
  1073. package/build/parse/traverse/findAllInTree.js.map +1 -0
  1074. package/build/parse/traverse/index.js +10 -0
  1075. package/build/parse/traverse/index.js.map +1 -0
  1076. package/build/parse/traverse/innerText.js +25 -0
  1077. package/build/parse/traverse/innerText.js.map +1 -0
  1078. package/build/parsedPaper/ParsedPaper.js +93 -0
  1079. package/build/parsedPaper/ParsedPaper.js.map +1 -0
  1080. package/build/parsedPaper/assess/TreeAssessor.js +175 -0
  1081. package/build/parsedPaper/assess/TreeAssessor.js.map +1 -0
  1082. package/build/parsedPaper/assess/assessmentListFactories.js +67 -0
  1083. package/build/parsedPaper/assess/assessmentListFactories.js.map +1 -0
  1084. package/build/parsedPaper/assess/assessments/Assessment.js +92 -0
  1085. package/build/parsedPaper/assess/assessments/Assessment.js.map +1 -0
  1086. package/build/parsedPaper/assess/assessments/index.js +7 -0
  1087. package/build/parsedPaper/assess/assessments/index.js.map +1 -0
  1088. package/build/parsedPaper/assess/assessorFactories.js +96 -0
  1089. package/build/parsedPaper/assess/assessorFactories.js.map +1 -0
  1090. package/build/parsedPaper/assess/cornerstone/assessmentListFactories.js +43 -0
  1091. package/build/parsedPaper/assess/cornerstone/assessmentListFactories.js.map +1 -0
  1092. package/build/parsedPaper/assess/cornerstone/index.js +3 -0
  1093. package/build/parsedPaper/assess/cornerstone/index.js.map +1 -0
  1094. package/build/parsedPaper/assess/index.js +15 -0
  1095. package/build/parsedPaper/assess/index.js.map +1 -0
  1096. package/build/parsedPaper/build/PaperParser.js +97 -0
  1097. package/build/parsedPaper/build/PaperParser.js.map +1 -0
  1098. package/build/parsedPaper/build/linguisticParsing/Sentence.js +89 -0
  1099. package/build/parsedPaper/build/linguisticParsing/Sentence.js.map +1 -0
  1100. package/build/parsedPaper/build/linguisticParsing/SentenceTokenizer.js +287 -0
  1101. package/build/parsedPaper/build/linguisticParsing/SentenceTokenizer.js.map +1 -0
  1102. package/build/parsedPaper/build/linguisticParsing/parseText.js +20 -0
  1103. package/build/parsedPaper/build/linguisticParsing/parseText.js.map +1 -0
  1104. package/build/parsedPaper/build/tree/TreeBuilder.js +76 -0
  1105. package/build/parsedPaper/build/tree/TreeBuilder.js.map +1 -0
  1106. package/build/parsedPaper/build/tree/cleanup/calculateTextIndices.js +178 -0
  1107. package/build/parsedPaper/build/tree/cleanup/calculateTextIndices.js.map +1 -0
  1108. package/build/parsedPaper/build/tree/cleanup/getElementContent.js +21 -0
  1109. package/build/parsedPaper/build/tree/cleanup/getElementContent.js.map +1 -0
  1110. package/build/parsedPaper/build/tree/cleanup/postParsing.js +37 -0
  1111. package/build/parsedPaper/build/tree/cleanup/postParsing.js.map +1 -0
  1112. package/build/parsedPaper/build/tree/html/HTMLTreeConverter.js +220 -0
  1113. package/build/parsedPaper/build/tree/html/HTMLTreeConverter.js.map +1 -0
  1114. package/build/parsedPaper/build/tree/html/buildTree.js +30 -0
  1115. package/build/parsedPaper/build/tree/html/buildTree.js.map +1 -0
  1116. package/build/parsedPaper/build/tree/html/htmlConstants.js +30 -0
  1117. package/build/parsedPaper/build/tree/html/htmlConstants.js.map +1 -0
  1118. package/build/parsedPaper/build/tree/index.js +15 -0
  1119. package/build/parsedPaper/build/tree/index.js.map +1 -0
  1120. package/build/parsedPaper/build/tree/metadata/buildTree.js +30 -0
  1121. package/build/parsedPaper/build/tree/metadata/buildTree.js.map +1 -0
  1122. package/build/parsedPaper/research/TreeResearcher.js +131 -0
  1123. package/build/parsedPaper/research/TreeResearcher.js.map +1 -0
  1124. package/build/parsedPaper/research/index.js +12 -0
  1125. package/build/parsedPaper/research/index.js.map +1 -0
  1126. package/build/parsedPaper/research/researches/Headings.js +20 -0
  1127. package/build/parsedPaper/research/researches/Headings.js.map +1 -0
  1128. package/build/parsedPaper/research/researches/LinkStatistics.js +123 -0
  1129. package/build/parsedPaper/research/researches/LinkStatistics.js.map +1 -0
  1130. package/build/parsedPaper/research/researches/Research.js +53 -0
  1131. package/build/parsedPaper/research/researches/Research.js.map +1 -0
  1132. package/build/parsedPaper/research/researches/index.js +2 -0
  1133. package/build/parsedPaper/research/researches/index.js.map +1 -0
  1134. package/build/parsedPaper/structure/tree/FormattingElement.js +67 -0
  1135. package/build/parsedPaper/structure/tree/FormattingElement.js.map +1 -0
  1136. package/build/parsedPaper/structure/tree/SourceCodeLocation.js +42 -0
  1137. package/build/parsedPaper/structure/tree/SourceCodeLocation.js.map +1 -0
  1138. package/build/parsedPaper/structure/tree/TextContainer.js +84 -0
  1139. package/build/parsedPaper/structure/tree/TextContainer.js.map +1 -0
  1140. package/build/parsedPaper/structure/tree/index.js +11 -0
  1141. package/build/parsedPaper/structure/tree/index.js.map +1 -0
  1142. package/build/parsedPaper/structure/tree/nodes/Heading.js +27 -0
  1143. package/build/parsedPaper/structure/tree/nodes/Heading.js.map +1 -0
  1144. package/build/parsedPaper/structure/tree/nodes/LeafNode.js +75 -0
  1145. package/build/parsedPaper/structure/tree/nodes/LeafNode.js.map +1 -0
  1146. package/build/parsedPaper/structure/tree/nodes/List.js +48 -0
  1147. package/build/parsedPaper/structure/tree/nodes/List.js.map +1 -0
  1148. package/build/parsedPaper/structure/tree/nodes/ListItem.js +27 -0
  1149. package/build/parsedPaper/structure/tree/nodes/ListItem.js.map +1 -0
  1150. package/build/parsedPaper/structure/tree/nodes/MetadataMiscellaneous.js +45 -0
  1151. package/build/parsedPaper/structure/tree/nodes/MetadataMiscellaneous.js.map +1 -0
  1152. package/build/parsedPaper/structure/tree/nodes/MetadataText.js +25 -0
  1153. package/build/parsedPaper/structure/tree/nodes/MetadataText.js.map +1 -0
  1154. package/build/parsedPaper/structure/tree/nodes/Node.js +153 -0
  1155. package/build/parsedPaper/structure/tree/nodes/Node.js.map +1 -0
  1156. package/build/parsedPaper/structure/tree/nodes/Paragraph.js +23 -0
  1157. package/build/parsedPaper/structure/tree/nodes/Paragraph.js.map +1 -0
  1158. package/build/parsedPaper/structure/tree/nodes/StructuredNode.js +53 -0
  1159. package/build/parsedPaper/structure/tree/nodes/StructuredNode.js.map +1 -0
  1160. package/build/parsedPaper/structure/tree/nodes/index.js +11 -0
  1161. package/build/parsedPaper/structure/tree/nodes/index.js.map +1 -0
  1162. package/build/scoring/assessments/assessment.js +70 -0
  1163. package/build/scoring/assessments/assessment.js.map +1 -0
  1164. package/build/scoring/assessments/index.js +61 -0
  1165. package/build/scoring/assessments/index.js.map +1 -0
  1166. package/build/scoring/assessments/readability/ParagraphTooLongAssessment.js +159 -0
  1167. package/build/scoring/assessments/readability/ParagraphTooLongAssessment.js.map +1 -0
  1168. package/build/scoring/assessments/readability/RelatedKeywordsAssessment.js +114 -0
  1169. package/build/scoring/assessments/readability/RelatedKeywordsAssessment.js.map +1 -0
  1170. package/build/scoring/assessments/readability/SentenceBeginningsAssessment.js +128 -0
  1171. package/build/scoring/assessments/readability/SentenceBeginningsAssessment.js.map +1 -0
  1172. package/build/scoring/assessments/readability/SentenceLengthInTextAssessment.js +170 -0
  1173. package/build/scoring/assessments/readability/SentenceLengthInTextAssessment.js.map +1 -0
  1174. package/build/scoring/assessments/readability/TransitionWordsAssessment.js +156 -0
  1175. package/build/scoring/assessments/readability/TransitionWordsAssessment.js.map +1 -0
  1176. package/build/scoring/assessments/seo/ImageCountAssessment.js +104 -0
  1177. package/build/scoring/assessments/seo/ImageCountAssessment.js.map +1 -0
  1178. package/build/scoring/assessments/seo/InternalLinksAssessment.js +106 -0
  1179. package/build/scoring/assessments/seo/InternalLinksAssessment.js.map +1 -0
  1180. package/build/scoring/assessments/seo/IntroductionKeywordAssessment.js +103 -0
  1181. package/build/scoring/assessments/seo/IntroductionKeywordAssessment.js.map +1 -0
  1182. package/build/scoring/assessments/seo/KeyphraseAssessment.js +98 -0
  1183. package/build/scoring/assessments/seo/KeyphraseAssessment.js.map +1 -0
  1184. package/build/scoring/assessments/seo/KeyphraseLengthAssessment.js +103 -0
  1185. package/build/scoring/assessments/seo/KeyphraseLengthAssessment.js.map +1 -0
  1186. package/build/scoring/assessments/seo/KeywordDensityAssessment.js +111 -0
  1187. package/build/scoring/assessments/seo/KeywordDensityAssessment.js.map +1 -0
  1188. package/build/scoring/assessments/seo/MetaDescriptionKeywordAssessment.js +111 -0
  1189. package/build/scoring/assessments/seo/MetaDescriptionKeywordAssessment.js.map +1 -0
  1190. package/build/scoring/assessments/seo/MetaDescriptionLengthAssessment.js +104 -0
  1191. package/build/scoring/assessments/seo/MetaDescriptionLengthAssessment.js.map +1 -0
  1192. package/build/scoring/assessments/seo/MetaTitleKeywordAssessment.js +108 -0
  1193. package/build/scoring/assessments/seo/MetaTitleKeywordAssessment.js.map +1 -0
  1194. package/build/scoring/assessments/seo/NumberInMetaTitleAssessment.js +101 -0
  1195. package/build/scoring/assessments/seo/NumberInMetaTitleAssessment.js.map +1 -0
  1196. package/build/scoring/assessments/seo/OutboundLinksAssessment.js +107 -0
  1197. package/build/scoring/assessments/seo/OutboundLinksAssessment.js.map +1 -0
  1198. package/build/scoring/assessments/seo/PageTitleWidthAssessment.js +99 -0
  1199. package/build/scoring/assessments/seo/PageTitleWidthAssessment.js.map +1 -0
  1200. package/build/scoring/assessments/seo/SchemaAssessment.js +108 -0
  1201. package/build/scoring/assessments/seo/SchemaAssessment.js.map +1 -0
  1202. package/build/scoring/assessments/seo/SingleH1Assessment.js +108 -0
  1203. package/build/scoring/assessments/seo/SingleH1Assessment.js.map +1 -0
  1204. package/build/scoring/assessments/seo/SingleTitleAssessment.js +101 -0
  1205. package/build/scoring/assessments/seo/SingleTitleAssessment.js.map +1 -0
  1206. package/build/scoring/assessments/seo/SubHeadingsKeywordAssessment.js +99 -0
  1207. package/build/scoring/assessments/seo/SubHeadingsKeywordAssessment.js.map +1 -0
  1208. package/build/scoring/assessments/seo/TextImagesAssessment.js +135 -0
  1209. package/build/scoring/assessments/seo/TextImagesAssessment.js.map +1 -0
  1210. package/build/scoring/assessments/seo/TextLengthAssessment.js +97 -0
  1211. package/build/scoring/assessments/seo/TextLengthAssessment.js.map +1 -0
  1212. package/build/scoring/assessments/seo/UrlKeywordAssessment.js +100 -0
  1213. package/build/scoring/assessments/seo/UrlKeywordAssessment.js.map +1 -0
  1214. package/build/scoring/assessments/seo/UrlLengthAssessment.js +99 -0
  1215. package/build/scoring/assessments/seo/UrlLengthAssessment.js.map +1 -0
  1216. package/build/scoring/assessors/assessor.js +277 -0
  1217. package/build/scoring/assessors/assessor.js.map +1 -0
  1218. package/build/scoring/assessors/avadaAssessor.js +85 -0
  1219. package/build/scoring/assessors/avadaAssessor.js.map +1 -0
  1220. package/build/scoring/assessors/contentAssessor.js +143 -0
  1221. package/build/scoring/assessors/contentAssessor.js.map +1 -0
  1222. package/build/scoring/assessors/index.js +5 -0
  1223. package/build/scoring/assessors/index.js.map +1 -0
  1224. package/build/scoring/assessors/seoAssessor.js +38 -0
  1225. package/build/scoring/assessors/seoAssessor.js.map +1 -0
  1226. package/build/scoring/helpers/assessments/checkForTooLongSentences.js +14 -0
  1227. package/build/scoring/helpers/assessments/checkForTooLongSentences.js.map +1 -0
  1228. package/build/scoring/helpers/assessments/inRange.js +43 -0
  1229. package/build/scoring/helpers/assessments/inRange.js.map +1 -0
  1230. package/build/scoring/helpers/assessments/keyphraseLengthFactor.js +11 -0
  1231. package/build/scoring/helpers/assessments/keyphraseLengthFactor.js.map +1 -0
  1232. package/build/scoring/helpers/assessments/recommendedKeywordCount.js +41 -0
  1233. package/build/scoring/helpers/assessments/recommendedKeywordCount.js.map +1 -0
  1234. package/build/scoring/helpers/index.js +84 -0
  1235. package/build/scoring/helpers/index.js.map +1 -0
  1236. package/build/scoring/interpreters/index.js +3 -0
  1237. package/build/scoring/interpreters/index.js.map +1 -0
  1238. package/build/scoring/interpreters/scoreToRating.js +26 -0
  1239. package/build/scoring/interpreters/scoreToRating.js.map +1 -0
  1240. package/build/scoring/renderers/AssessorPresenter.js +342 -0
  1241. package/build/scoring/renderers/AssessorPresenter.js.map +1 -0
  1242. package/build/scoring/scoreAggregators/ReadabilityScoreAggregator.js +197 -0
  1243. package/build/scoring/scoreAggregators/ReadabilityScoreAggregator.js.map +1 -0
  1244. package/build/scoring/scoreAggregators/SEOScoreAggregator.js +54 -0
  1245. package/build/scoring/scoreAggregators/SEOScoreAggregator.js.map +1 -0
  1246. package/build/scoring/scoreAggregators/ScoreAggregator.js +24 -0
  1247. package/build/scoring/scoreAggregators/ScoreAggregator.js.map +1 -0
  1248. package/build/scoring/scoreAggregators/index.js +4 -0
  1249. package/build/scoring/scoreAggregators/index.js.map +1 -0
  1250. package/build/values/AssessmentResult.js +479 -0
  1251. package/build/values/AssessmentResult.js.map +1 -0
  1252. package/build/values/Mark.js +267 -0
  1253. package/build/values/Mark.js.map +1 -0
  1254. package/build/values/Paper.js +489 -0
  1255. package/build/values/Paper.js.map +1 -0
  1256. package/build/values/index.js +5 -0
  1257. package/build/values/index.js.map +1 -0
  1258. package/build/vendor/turkishStemmer.js +2811 -0
  1259. package/build/vendor/turkishStemmer.js.map +1 -0
  1260. package/package.json +2 -2
@@ -0,0 +1,8 @@
1
+ /** @module config/twoPartTransitionWords */
2
+
3
+ /**
4
+ * Returns an array with two-part transition words to be used by the assessments.
5
+ * @type {Array} The array filled with two-part transition words.
6
+ */
7
+ export default [["buď", "nebo"], ["buď", "anebo"], ["ani", "ani"], ["nejen", "ale i"], ["jak", "tak"], ["sice", "ale"], ["sice", "však"], ["jednak", "jednak"]];
8
+ //# sourceMappingURL=twoPartTransitionWords.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"twoPartTransitionWords.js","names":[],"sources":["../../../../../src/languageProcessing/languages/cs/config/twoPartTransitionWords.js"],"sourcesContent":["/** @module config/twoPartTransitionWords */\n\n/**\n * Returns an array with two-part transition words to be used by the assessments.\n * @type {Array} The array filled with two-part transition words.\n */\nexport default [ [ \"buď\", \"nebo\" ], [ \"buď\", \"anebo\" ], [ \"ani\", \"ani\" ], [ \"nejen\", \"ale i\" ], [ \"jak\", \"tak\" ],\n\t[ \"sice\", \"ale\" ], [ \"sice\", \"však\" ], [ \"jednak\", \"jednak\" ] ];\n"],"mappings":"AAAA;;AAEA;AACA;AACA;AACA;AACA,eAAe,CAAE,CAAE,KAAK,EAAE,MAAM,CAAE,EAAE,CAAE,KAAK,EAAE,OAAO,CAAE,EAAE,CAAE,KAAK,EAAE,KAAK,CAAE,EAAE,CAAE,OAAO,EAAE,OAAO,CAAE,EAAE,CAAE,KAAK,EAAE,KAAK,CAAE,EAC/G,CAAE,MAAM,EAAE,KAAK,CAAE,EAAE,CAAE,MAAM,EAAE,MAAM,CAAE,EAAE,CAAE,QAAQ,EAAE,QAAQ,CAAE,CAAE","ignoreList":[]}
@@ -0,0 +1,28 @@
1
+ import { languageProcessing } from "../../../../index.js";
2
+ const {
3
+ getClausesSplitOnStopWords,
4
+ createRegexFromArray
5
+ } = languageProcessing;
6
+ import CzechClause from "../values/Clause";
7
+ import auxiliaries from "../config/internal/passiveVoiceAuxiliaries.js";
8
+ import stopwords from "../config/stopWords.js";
9
+ const options = {
10
+ Clause: CzechClause,
11
+ regexes: {
12
+ auxiliaryRegex: createRegexFromArray(auxiliaries),
13
+ stopCharacterRegex: /([:,])(?=[ \n\r\t'"+\-»«‹›<>])/gi,
14
+ stopwordRegex: createRegexFromArray(stopwords)
15
+ }
16
+ };
17
+
18
+ /**
19
+ * Gets the clauses from a sentence by determining sentence breakers.
20
+ *
21
+ * @param {string} sentence The sentence to split up into clauses.
22
+ *
23
+ * @returns {Array} The array with all clauses that have an auxiliary.
24
+ */
25
+ export default function getCzechClauses(sentence) {
26
+ return getClausesSplitOnStopWords(sentence, options);
27
+ }
28
+ //# sourceMappingURL=getClauses.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getClauses.js","names":["languageProcessing","getClausesSplitOnStopWords","createRegexFromArray","CzechClause","auxiliaries","stopwords","options","Clause","regexes","auxiliaryRegex","stopCharacterRegex","stopwordRegex","getCzechClauses","sentence"],"sources":["../../../../../src/languageProcessing/languages/cs/helpers/getClauses.js"],"sourcesContent":["import {languageProcessing} from '@axyseo/index.js';\nconst {getClausesSplitOnStopWords, createRegexFromArray} = languageProcessing;\n\nimport CzechClause from '../values/Clause';\nimport auxiliaries from '../config/internal/passiveVoiceAuxiliaries.js';\nimport stopwords from '../config/stopWords.js';\n\nconst options = {\n Clause: CzechClause,\n regexes: {\n auxiliaryRegex: createRegexFromArray(auxiliaries),\n stopCharacterRegex: /([:,])(?=[ \\n\\r\\t'\"+\\-»«‹›<>])/gi,\n stopwordRegex: createRegexFromArray(stopwords)\n }\n};\n\n/**\n * Gets the clauses from a sentence by determining sentence breakers.\n *\n * @param {string} sentence The sentence to split up into clauses.\n *\n * @returns {Array} The array with all clauses that have an auxiliary.\n */\nexport default function getCzechClauses(sentence) {\n return getClausesSplitOnStopWords(sentence, options);\n}\n"],"mappings":"AAAA,SAAQA,kBAAkB;AAC1B,MAAM;EAACC,0BAA0B;EAAEC;AAAoB,CAAC,GAAGF,kBAAkB;AAE7E,OAAOG,WAAW;AAClB,OAAOC,WAAW;AAClB,OAAOC,SAAS;AAEhB,MAAMC,OAAO,GAAG;EACdC,MAAM,EAAEJ,WAAW;EACnBK,OAAO,EAAE;IACPC,cAAc,EAAEP,oBAAoB,CAACE,WAAW,CAAC;IACjDM,kBAAkB,EAAE,kCAAkC;IACtDC,aAAa,EAAET,oBAAoB,CAACG,SAAS;EAC/C;AACF,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe,SAASO,eAAeA,CAACC,QAAQ,EAAE;EAChD,OAAOZ,0BAA0B,CAACY,QAAQ,EAAEP,OAAO,CAAC;AACtD","ignoreList":[]}
@@ -0,0 +1,22 @@
1
+ import { get } from 'lodash';
2
+ import { languageProcessing } from "../../../../index.js";
3
+ const {
4
+ baseStemmer
5
+ } = languageProcessing;
6
+ import stem from "./internal/stem";
7
+
8
+ /**
9
+ * Returns the stemmer for a researcher.
10
+ *
11
+ * @param {Researcher} researcher The researcher.
12
+ *
13
+ * @returns {Function} The stemmer.
14
+ */
15
+ export default function getStemmer(researcher) {
16
+ const morphologyData = get(researcher.getData('morphology'), 'cs', false);
17
+ if (morphologyData) {
18
+ return word => stem(word, morphologyData);
19
+ }
20
+ return baseStemmer;
21
+ }
22
+ //# sourceMappingURL=getStemmer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getStemmer.js","names":["get","languageProcessing","baseStemmer","stem","getStemmer","researcher","morphologyData","getData","word"],"sources":["../../../../../src/languageProcessing/languages/cs/helpers/getStemmer.js"],"sourcesContent":["import {get} from 'lodash';\nimport {languageProcessing} from '@axyseo/index.js';\nconst {baseStemmer} = languageProcessing;\n\nimport stem from './internal/stem';\n\n/**\n * Returns the stemmer for a researcher.\n *\n * @param {Researcher} researcher The researcher.\n *\n * @returns {Function} The stemmer.\n */\nexport default function getStemmer(researcher) {\n const morphologyData = get(researcher.getData('morphology'), 'cs', false);\n\n if (morphologyData) {\n return word => stem(word, morphologyData);\n }\n\n return baseStemmer;\n}\n"],"mappings":"AAAA,SAAQA,GAAG,QAAO,QAAQ;AAC1B,SAAQC,kBAAkB;AAC1B,MAAM;EAACC;AAAW,CAAC,GAAGD,kBAAkB;AAExC,OAAOE,IAAI;;AAEX;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe,SAASC,UAAUA,CAACC,UAAU,EAAE;EAC7C,MAAMC,cAAc,GAAGN,GAAG,CAACK,UAAU,CAACE,OAAO,CAAC,YAAY,CAAC,EAAE,IAAI,EAAE,KAAK,CAAC;EAEzE,IAAID,cAAc,EAAE;IAClB,OAAOE,IAAI,IAAIL,IAAI,CAACK,IAAI,EAAEF,cAAc,CAAC;EAC3C;EAEA,OAAOJ,WAAW;AACpB","ignoreList":[]}
@@ -0,0 +1,18 @@
1
+ import { languageProcessing } from "../../../../../index.js";
2
+ const {
3
+ getWords
4
+ } = languageProcessing;
5
+ import getPassiveEndingsCzech from "../../config/internal/passiveVoiceEndings";
6
+
7
+ /**
8
+ * Creates an array of participles found in a clause.
9
+ *
10
+ * @param {string} clauseText The clause to find participles in.
11
+ *
12
+ * @returns {Array} The list with participles found.
13
+ */
14
+ export default function (clauseText) {
15
+ const words = getWords(clauseText);
16
+ return words.filter(word => getPassiveEndingsCzech.some(ending => word.endsWith(ending)));
17
+ }
18
+ //# sourceMappingURL=getParticiples.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getParticiples.js","names":["languageProcessing","getWords","getPassiveEndingsCzech","clauseText","words","filter","word","some","ending","endsWith"],"sources":["../../../../../../src/languageProcessing/languages/cs/helpers/internal/getParticiples.js"],"sourcesContent":["import {languageProcessing} from '@axyseo/index.js';\nconst {getWords} = languageProcessing;\nimport getPassiveEndingsCzech from '../../config/internal/passiveVoiceEndings';\n\n/**\n * Creates an array of participles found in a clause.\n *\n * @param {string} clauseText The clause to find participles in.\n *\n * @returns {Array} The list with participles found.\n */\nexport default function(clauseText) {\n const words = getWords(clauseText);\n\n return words.filter(word => getPassiveEndingsCzech.some(ending => word.endsWith(ending)));\n}\n"],"mappings":"AAAA,SAAQA,kBAAkB;AAC1B,MAAM;EAACC;AAAQ,CAAC,GAAGD,kBAAkB;AACrC,OAAOE,sBAAsB;;AAE7B;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe,UAASC,UAAU,EAAE;EAClC,MAAMC,KAAK,GAAGH,QAAQ,CAACE,UAAU,CAAC;EAElC,OAAOC,KAAK,CAACC,MAAM,CAACC,IAAI,IAAIJ,sBAAsB,CAACK,IAAI,CAACC,MAAM,IAAIF,IAAI,CAACG,QAAQ,CAACD,MAAM,CAAC,CAAC,CAAC;AAC3F","ignoreList":[]}
@@ -0,0 +1,335 @@
1
+ /**
2
+ * Copyright (c) 2005, Jacques Savoy
3
+ * Copyright (c) 2013, Jakub Dundalek.
4
+ * Authored by Ljiljana Dolamic from the University of Neuchatel.
5
+ * All rights reserved.
6
+ *
7
+ * Redistribution and use in source and binary forms, with or without modification, are permitted provided that
8
+ * the following conditions are met:
9
+ *
10
+ * 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
11
+ *
12
+ * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer
13
+ * in the documentation and/or other materials provided with the distribution.
14
+ *
15
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES,
16
+ * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17
+ * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
18
+ * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
19
+ * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
20
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
21
+ */
22
+
23
+ /**
24
+ * Takes care of palatalisation.
25
+ *
26
+ * @param {string} word The word to stem.
27
+ * @param {Object} morphologyData The Czech morphology data.
28
+ *
29
+ * @returns {string} The non-palatalised word or the original word if no such suffix is found.
30
+ */
31
+ const palatalise = function (word, morphologyData) {
32
+ const palataliseSuffixes = morphologyData.externalStemmer.palataliseSuffixes;
33
+ const len = word.length;
34
+ if (word.substring(len - 2, len) === palataliseSuffixes.palataliseSuffixCi || word.substring(len - 2, len) === palataliseSuffixes.palataliseSuffixCe || word.substring(len - 2, len) === palataliseSuffixes.palataliseSuffixCiCaron || word.substring(len - 2, len) === palataliseSuffixes.palataliseSuffixCeCaron) {
35
+ return word.replace(word.substring(len - 2, len), palataliseSuffixes.palataliseSuffixK);
36
+ }
37
+ if (word.substring(len - 2, len) === palataliseSuffixes.palataliseSuffixZi || word.substring(len - 2, len) === palataliseSuffixes.palataliseSuffixZe || word.substring(len - 2, len) === palataliseSuffixes.palataliseSuffixZiCaron || word.substring(len - 2, len) === palataliseSuffixes.palataliseSuffixZeCaron) {
38
+ return word.replace(word.substring(len - 2, len), palataliseSuffixes.palataliseSuffixH);
39
+ }
40
+ if (word.substring(len - 3, len) === palataliseSuffixes.palataliseSuffixCte || word.substring(len - 3, len) === palataliseSuffixes.palataliseSuffixCti || word.substring(len - 3, len) === palataliseSuffixes.palataliseSuffixCtiAccented) {
41
+ return word.replace(word.substring(len - 3, len), palataliseSuffixes.palataliseSuffixCk);
42
+ }
43
+ if (word.substring(len - 3, len) === palataliseSuffixes.palataliseSuffixSte || word.substring(len - 3, len) === palataliseSuffixes.palataliseSuffixSti || word.substring(len - 3, len) === palataliseSuffixes.palataliseSuffixStiAccented) {
44
+ return word.replace(word.substring(len - 3, len), palataliseSuffixes.palataliseSuffixSk);
45
+ }
46
+ return word.slice(0, -1);
47
+ };
48
+
49
+ /**
50
+ * Removes derivational suffixes.
51
+ *
52
+ * @param {string} word The word to stem.
53
+ * @param {Object} morphologyData The Czech morphology data.
54
+ *
55
+ * @returns {string} The word without derivational suffixes or the original word if no such suffix is found.
56
+ */
57
+ const removeDerivational = function (word, morphologyData) {
58
+ const derivationalSuffixes = morphologyData.externalStemmer.derivationalSuffixes;
59
+ const len = word.length;
60
+ if (len > 8 && word.substring(len - 6, len) === derivationalSuffixes.derivationalSuffixObinec) {
61
+ return word.slice(0, -6);
62
+ }
63
+ if (len > 7) {
64
+ if (word.substring(len - 5, len) === derivationalSuffixes.derivationalSuffixIonar) {
65
+ word = word.slice(0, -4);
66
+ return palatalise(word, morphologyData);
67
+ } else if (word.substring(len - 5, len) === derivationalSuffixes.derivationalSuffixOvisk || word.substring(len - 5, len) === derivationalSuffixes.derivationalSuffixOvstv || word.substring(len - 5, len) === derivationalSuffixes.derivationalSuffixOvist || word.substring(len - 5, len) === derivationalSuffixes.derivationalSuffixOvnik) {
68
+ return word.slice(0, -5);
69
+ }
70
+ }
71
+ if (len > 6) {
72
+ if (word.substring(len - 4, len) === derivationalSuffixes.derivationalSuffixAsek || word.substring(len - 4, len) === derivationalSuffixes.derivationalSuffixLoun || word.substring(len - 4, len) === derivationalSuffixes.derivationalSuffixNost || word.substring(len - 4, len) === derivationalSuffixes.derivationalSuffixTeln || word.substring(len - 4, len) === derivationalSuffixes.derivationalSuffixOvec || word.substring(len - 5, len) === derivationalSuffixes.derivationalSuffixOvik || word.substring(len - 4, len) === derivationalSuffixes.derivationalSuffixOvtv || word.substring(len - 4, len) === derivationalSuffixes.derivationalSuffixOvin || word.substring(len - 4, len) === derivationalSuffixes.derivationalSuffixStin) {
73
+ return word.slice(0, -4);
74
+ } else if (word.substring(len - 4, len) === derivationalSuffixes.derivationalSuffixEnic || word.substring(len - 4, len) === derivationalSuffixes.derivationalSuffixInec || word.substring(len - 4, len) === derivationalSuffixes.derivationalSuffixItel) {
75
+ word = word.slice(0, -3);
76
+ return palatalise(word, morphologyData);
77
+ }
78
+ }
79
+ if (len > 5) {
80
+ if (word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixEnk || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixIan || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixIst || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixIsk || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixIstCaron || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixItb || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixIrn) {
81
+ word = word.slice(0, -2);
82
+ return palatalise(word, morphologyData);
83
+ } else if (word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixArn || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixOch || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixOst || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixOvn || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixOun || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixOut || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixOus || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixUsk || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixKyn || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixCan || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixKar || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixNer || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixNik || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixCtv || word.substring(len - 3, len) === derivationalSuffixes.derivationalSuffixStv) {
84
+ return word.slice(0, -3);
85
+ }
86
+ }
87
+ if (len > 4) {
88
+ if (word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixAcAccented || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixAc || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixAnAccented || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixAn || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixAr || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixAs) {
89
+ return word.slice(0, -2);
90
+ } else if (word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixEc || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixEn || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixEnCaron || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixEr || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixIr || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixIc || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixIn || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixInAccented || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixIt || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixIv) {
91
+ word = word.slice(0, -1);
92
+ return palatalise(word, morphologyData);
93
+ } else if (word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixOb || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixOt || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixOv || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixOn || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixUl || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixYn || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixCk || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixCn || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixDl || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixNk || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixTv || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixTk || word.substring(len - 2, len) === derivationalSuffixes.derivationalSuffixVk) {
94
+ return word.slice(0, -2);
95
+ }
96
+ }
97
+ if (len > 3) {
98
+ if (word.charAt(word.length - 1) === derivationalSuffixes.derivationalSuffixC || word.charAt(word.length - 1) === derivationalSuffixes.derivationalSuffixCCaron || word.charAt(word.length - 1) === derivationalSuffixes.derivationalSuffixK || word.charAt(word.length - 1) === derivationalSuffixes.derivationalSuffixL || word.charAt(word.length - 1) === derivationalSuffixes.derivationalSuffixN || word.charAt(word.length - 1) === derivationalSuffixes.derivationalSuffixT) {
99
+ return word.slice(0, -1);
100
+ }
101
+ }
102
+ return word;
103
+ };
104
+
105
+ /**
106
+ * Removes augmentative suffixes.
107
+ *
108
+ * @param {string} word The word to stem.
109
+ * @param {Object} morphologyData The Czech morphology data.
110
+ *
111
+ * @returns {string} The word without augmentative suffixes or the original word if no such suffix is found.
112
+ */
113
+ const removeAugmentative = function (word, morphologyData) {
114
+ const augmentativeSuffixes = morphologyData.externalStemmer.augmentativeSuffixes;
115
+ const len = word.length;
116
+ if (len > 6 && word.substring(len - 4, len) === augmentativeSuffixes.augmentativeSuffixAjzn) {
117
+ return word.slice(0, -4);
118
+ }
119
+ if (len > 5 && word.substring(len - 3, len) === augmentativeSuffixes.augmentativeSuffixIzn || word.substring(len - 3, len) === augmentativeSuffixes.augmentativeSuffixIsk) {
120
+ word = word.slice(0, -2);
121
+ return palatalise(word, morphologyData);
122
+ }
123
+ return word;
124
+ };
125
+
126
+ /**
127
+ * Removes diminutive suffixes.
128
+ *
129
+ * @param {string} word The word to stem.
130
+ * @param {Object} morphologyData The Czech morphology data.
131
+ *
132
+ * @returns {string} The word without diminutive suffixes or the original word if no such suffix is found.
133
+ */
134
+ const removeDiminutive = function (word, morphologyData) {
135
+ const diminutiveSuffixes = morphologyData.externalStemmer.diminutiveSuffixes;
136
+ const len = word.length;
137
+ if (len > 7 && word.substring(len - 5, len) === diminutiveSuffixes.diminutiveSuffixOusek) {
138
+ return word.slice(0, -5);
139
+ }
140
+ if (len > 6) {
141
+ if (word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixEcek || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixEcekAccented || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixIcek || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixIcekAccented || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixEnek || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixEnekAccented || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixInek || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixInekAccented) {
142
+ word = word.slice(0, -3);
143
+ return palatalise(word, morphologyData);
144
+ }
145
+ if (word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixAcekAccented || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixAcek || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixOcek || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixUcek || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixAnek || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixOnek || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixUnek || word.substring(len - 4, len) === diminutiveSuffixes.diminutiveSuffixAnekAccented) {
146
+ return word.slice(0, -4);
147
+ }
148
+ }
149
+ if (len > 5) {
150
+ if (word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixEck || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixEckAccented || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixIck || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixIckAccented || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixEnk || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixEnkAccented || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixInk || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixInkAccented) {
151
+ word = word.slice(0, -3);
152
+ return palatalise(word, morphologyData);
153
+ }
154
+ if (word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixAckAccented || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixAck || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixOck || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixUck || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixAnk || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixOnk || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixUnk) {
155
+ return word.slice(0, -3);
156
+ }
157
+ if (word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixAtk || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixAnkAccented || word.substring(len - 3, len) === diminutiveSuffixes.diminutiveSuffixUsk) {
158
+ return word.slice(0, -3);
159
+ }
160
+ }
161
+ if (len > 4) {
162
+ if (word.substring(len - 2, len) === diminutiveSuffixes.diminutiveSuffixEk || word.substring(len - 2, len) === diminutiveSuffixes.diminutiveSuffixEkAccented || word.substring(len - 2, len) === diminutiveSuffixes.diminutiveSuffixIkAccented || word.substring(len - 2, len) === diminutiveSuffixes.diminutiveSuffixIk) {
163
+ word = word.slice(0, -1);
164
+ return palatalise(word, morphologyData);
165
+ }
166
+ if (word.substring(len - 2, len) === diminutiveSuffixes.diminutiveSuffixAkAccented || word.substring(len - 2, len) === diminutiveSuffixes.diminutiveSuffixAk || word.substring(len - 2, len) === diminutiveSuffixes.diminutiveSuffixOk || word.substring(len - 2, len) === diminutiveSuffixes.diminutiveSuffixUk) {
167
+ return word.slice(0, -1);
168
+ }
169
+ }
170
+ if (len > 3 && word.substring(len - 1, len) === diminutiveSuffixes.diminutiveSuffixK) {
171
+ return word.slice(0, -1);
172
+ }
173
+ return word;
174
+ };
175
+
176
+ /**
177
+ * Removes comparative suffixes.
178
+ *
179
+ * @param {string} word The word to stem.
180
+ * @param {Object} morphologyData The Czech morphology data.
181
+ *
182
+ * @returns {string} The word without comparative suffixes or the original word if no such suffix is found.
183
+ */
184
+ const removeComparative = function (word, morphologyData) {
185
+ const comparativeSuffixes = morphologyData.externalStemmer.comparativeSuffixes;
186
+ const len = word.length;
187
+ if (len > 5 && word.substring(len - 3, len) === comparativeSuffixes.comparativeSuffixesEjs || word.substring(len - 3, len) === comparativeSuffixes.comparativeSuffixesEjsCaron) {
188
+ word = word.slice(0, -2);
189
+ return palatalise(word, morphologyData);
190
+ }
191
+ return word;
192
+ };
193
+
194
+ /**
195
+ * Removes possessive suffixes.
196
+ *
197
+ * @param {string} word The word to stem.
198
+ * @param {Object} morphologyData The Czech morphology data.
199
+ *
200
+ * @returns {string} The word without possessive suffixes or the original word if no such suffix is found.
201
+ */
202
+ const removePossessives = function (word, morphologyData) {
203
+ const possessiveSuffixes = morphologyData.externalStemmer.possessiveSuffixes;
204
+ const len = word.length;
205
+ if (len > 5) {
206
+ if (word.substring(len - 2, len) === possessiveSuffixes.possessiveSuffixOv) {
207
+ return word.slice(0, -2);
208
+ }
209
+ if (word.substring(len - 2, len) === possessiveSuffixes.possessiveSuffixesUv) {
210
+ return word.slice(0, -2);
211
+ }
212
+ if (word.substring(len - 2, len) === possessiveSuffixes.possessiveSuffixIn) {
213
+ word = word.slice(0, -1);
214
+ return palatalise(word, morphologyData);
215
+ }
216
+ }
217
+ return word;
218
+ };
219
+
220
+ /**
221
+ * Removes case suffixes.
222
+ *
223
+ * @param {string} word The word to stem.
224
+ * @param {Object} morphologyData The Czech morphology data.
225
+ *
226
+ * @returns {string} The word without case suffixes or the original word if no such suffix is found.
227
+ */
228
+ const removeCase = function (word, morphologyData) {
229
+ const caseSuffixes = morphologyData.externalStemmer.caseSuffixes;
230
+ const len = word.length;
231
+ if (len > 7 && word.substring(len - 5, len) === caseSuffixes.caseSuffixAtech) {
232
+ return word.slice(0, -5);
233
+ }
234
+ if (len > 6) {
235
+ if (word.substring(len - 4, len) === caseSuffixes.caseSuffixEtem) {
236
+ word = word.slice(0, -3);
237
+ return palatalise(word, morphologyData);
238
+ }
239
+ if (word.substring(len - 4, len) === caseSuffixes.caseSuffixAtum) {
240
+ return word.slice(0, -4);
241
+ }
242
+ }
243
+ if (len > 5) {
244
+ if (word.substring(len - 3, len) === caseSuffixes.caseSuffixEch || word.substring(len - 3, len) === caseSuffixes.caseSuffixIch || word.substring(len - 3, len) === caseSuffixes.caseSuffixIchAccented || word.substring(len - 3, len) === caseSuffixes.caseSuffixEho || word.substring(len - 3, len) === caseSuffixes.caseSuffixEmiCaron || word.substring(len - 3, len) === caseSuffixes.caseSuffixEmi || word.substring(len - 3, len) === caseSuffixes.caseSuffixEmuAccented || word.substring(len - 3, len) === caseSuffixes.caseSuffixEte || word.substring(len - 3, len) === caseSuffixes.caseSuffixEti || word.substring(len - 3, len) === caseSuffixes.caseSuffixIho || word.substring(len - 3, len) === caseSuffixes.caseSuffixIhoAccented || word.substring(len - 3, len) === caseSuffixes.caseSuffixImi || word.substring(len - 3, len) === caseSuffixes.caseSuffixImu) {
245
+ word = word.slice(0, -2);
246
+ return palatalise(word, morphologyData);
247
+ } else if (word.substring(len - 3, len) === caseSuffixes.caseSuffixAchAccented || word.substring(len - 3, len) === caseSuffixes.caseSuffixAta || word.substring(len - 3, len) === caseSuffixes.caseSuffixAty || word.substring(len - 3, len) === caseSuffixes.caseSuffixYch || word.substring(len - 3, len) === caseSuffixes.caseSuffixAma || word.substring(len - 3, len) === caseSuffixes.caseSuffixAmi || word.substring(len - 3, len) === caseSuffixes.caseSuffixOve || word.substring(len - 3, len) === caseSuffixes.caseSuffixOvi || word.substring(len - 3, len) === caseSuffixes.caseSuffixYmi) {
248
+ return word.slice(0, -3);
249
+ }
250
+ }
251
+ if (len > 4) {
252
+ if (word.substring(len - 2, len) === caseSuffixes.caseSuffixEm) {
253
+ word = word.slice(0, -1);
254
+ return palatalise(word, morphologyData);
255
+ } else if (word.substring(len - 2, len) === caseSuffixes.caseSuffixEs || word.substring(len - 2, len) === caseSuffixes.caseSuffixEmAccented || word.substring(len - 2, len) === caseSuffixes.caseSuffixIm) {
256
+ word = word.slice(0, -2);
257
+ return palatalise(word, morphologyData);
258
+ } else if (word.substring(len - 2, len) === caseSuffixes.caseSuffixUm || word.substring(len - 2, len) === caseSuffixes.caseSuffixAt || word.substring(len - 2, len) === caseSuffixes.caseSuffixAm || word.substring(len - 2, len) === caseSuffixes.caseSuffixOs || word.substring(len - 2, len) === caseSuffixes.caseSuffixUs || word.substring(len - 2, len) === caseSuffixes.caseSuffixYm || word.substring(len - 2, len) === caseSuffixes.caseSuffixMi || word.substring(len - 2, len) === caseSuffixes.caseSuffixOu) {
259
+ return word.slice(0, -2);
260
+ }
261
+ }
262
+ if (len > 3) {
263
+ if (word.substring(len - 1, len) === caseSuffixes.caseSuffixE || word.substring(len - 1, len) === caseSuffixes.caseSuffixI || word.substring(len - 1, len) === caseSuffixes.caseSuffixIAccented || word.substring(len - 1, len) === caseSuffixes.caseSuffixECaron) {
264
+ return palatalise(word, morphologyData);
265
+ } else if (word.substring(len - 1, len) === caseSuffixes.caseSuffixU || word.substring(len - 1, len) === caseSuffixes.caseSuffixY || word.substring(len - 1, len) === caseSuffixes.caseSuffixURing || word.substring(len - 1, len) === caseSuffixes.caseSuffixA || word.substring(len - 1, len) === caseSuffixes.caseSuffixO || word.substring(len - 1, len) === caseSuffixes.caseSuffixAAccented || word.substring(len - 1, len) === caseSuffixes.caseSuffixEAccented || word.substring(len - 1, len) === caseSuffixes.caseSuffixYAccented) {
266
+ return word.slice(0, -1);
267
+ }
268
+ }
269
+ return word;
270
+ };
271
+
272
+ /**
273
+ * Checks whether a word is in the full-form exception list and if so returns the canonical stem.
274
+ *
275
+ * @param {string} word The word to be checked.
276
+ * @param {Object} morphologyData The Czech morphology data.
277
+ *
278
+ * @returns {string} The canonical stem if word was found on the list or the original word otherwise.
279
+ */
280
+ const checkWordInFullFormExceptions = function (word, morphologyData) {
281
+ for (const paradigm of morphologyData.externalStemmer.exceptionStemsWithFullForms) {
282
+ if (paradigm[1].includes(word)) {
283
+ return paradigm[0];
284
+ }
285
+ }
286
+ return word;
287
+ };
288
+
289
+ /**
290
+ * Check whether the stem is on the exception list of stems that belong to one word. If it is, returns the canonical stem.
291
+ *
292
+ * @param {string} word The stemmed word.
293
+ * @param {Object} morphologyData The Czech morphology data.
294
+ *
295
+ * @returns {string} The canonical stem if word was found on the list or the original word otherwise.
296
+ */
297
+ const canonicalizeStem = function (word, morphologyData) {
298
+ // Checks the nouns list.
299
+ for (const paradigm of morphologyData.externalStemmer.stemsThatBelongToOneWord.nouns) {
300
+ if (paradigm.includes(word)) {
301
+ return paradigm[0];
302
+ }
303
+ }
304
+ return word;
305
+ };
306
+
307
+ /**
308
+ * Stems Czech words.
309
+ *
310
+ * @param {string} word The word to stem.
311
+ * @param {Object} morphologyData The Czech morphology data.
312
+ *
313
+ * @returns {string} The stemmed word.
314
+ */
315
+ export default function stem(word, morphologyData) {
316
+ word = word.toLowerCase();
317
+ // Checks if the word is on an exception list for which all forms of a word and its stem are listed.
318
+ word = checkWordInFullFormExceptions(word, morphologyData);
319
+ // Removes case endings from nouns and adjectives.
320
+ word = removeCase(word, morphologyData);
321
+ // Removes possessive -ov- and -in- endings from names.
322
+ word = removePossessives(word, morphologyData);
323
+ // Removes comparative endings.
324
+ word = removeComparative(word, morphologyData);
325
+ // Removes diminutive endings.
326
+ word = removeDiminutive(word, morphologyData);
327
+ // Removes augmentatives endings.
328
+ word = removeAugmentative(word, morphologyData);
329
+ // Removes derivational suffixes from nouns.
330
+ word = removeDerivational(word, morphologyData);
331
+ // Checks whether the stem is on the exception list of stems that belong to one word.
332
+ word = canonicalizeStem(word, morphologyData);
333
+ return word;
334
+ }
335
+ //# sourceMappingURL=stem.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stem.js","names":["palatalise","word","morphologyData","palataliseSuffixes","externalStemmer","len","length","substring","palataliseSuffixCi","palataliseSuffixCe","palataliseSuffixCiCaron","palataliseSuffixCeCaron","replace","palataliseSuffixK","palataliseSuffixZi","palataliseSuffixZe","palataliseSuffixZiCaron","palataliseSuffixZeCaron","palataliseSuffixH","palataliseSuffixCte","palataliseSuffixCti","palataliseSuffixCtiAccented","palataliseSuffixCk","palataliseSuffixSte","palataliseSuffixSti","palataliseSuffixStiAccented","palataliseSuffixSk","slice","removeDerivational","derivationalSuffixes","derivationalSuffixObinec","derivationalSuffixIonar","derivationalSuffixOvisk","derivationalSuffixOvstv","derivationalSuffixOvist","derivationalSuffixOvnik","derivationalSuffixAsek","derivationalSuffixLoun","derivationalSuffixNost","derivationalSuffixTeln","derivationalSuffixOvec","derivationalSuffixOvik","derivationalSuffixOvtv","derivationalSuffixOvin","derivationalSuffixStin","derivationalSuffixEnic","derivationalSuffixInec","derivationalSuffixItel","derivationalSuffixEnk","derivationalSuffixIan","derivationalSuffixIst","derivationalSuffixIsk","derivationalSuffixIstCaron","derivationalSuffixItb","derivationalSuffixIrn","derivationalSuffixArn","derivationalSuffixOch","derivationalSuffixOst","derivationalSuffixOvn","derivationalSuffixOun","derivationalSuffixOut","derivationalSuffixOus","derivationalSuffixUsk","derivationalSuffixKyn","derivationalSuffixCan","derivationalSuffixKar","derivationalSuffixNer","derivationalSuffixNik","derivationalSuffixCtv","derivationalSuffixStv","derivationalSuffixAcAccented","derivationalSuffixAc","derivationalSuffixAnAccented","derivationalSuffixAn","derivationalSuffixAr","derivationalSuffixAs","derivationalSuffixEc","derivationalSuffixEn","derivationalSuffixEnCaron","derivationalSuffixEr","derivationalSuffixIr","derivationalSuffixIc","derivationalSuffixIn","derivationalSuffixInAccented","derivationalSuffixIt","derivationalSuffixIv","derivationalSuffixOb","derivationalSuffixOt","derivationalSuffixOv","derivationalSuffixOn","derivationalSuffixUl","derivationalSuffixYn","derivationalSuffixCk","derivationalSuffixCn","derivationalSuffixDl","derivationalSuffixNk","derivationalSuffixTv","derivationalSuffixTk","derivationalSuffixVk","charAt","derivationalSuffixC","derivationalSuffixCCaron","derivationalSuffixK","derivationalSuffixL","derivationalSuffixN","derivationalSuffixT","removeAugmentative","augmentativeSuffixes","augmentativeSuffixAjzn","augmentativeSuffixIzn","augmentativeSuffixIsk","removeDiminutive","diminutiveSuffixes","diminutiveSuffixOusek","diminutiveSuffixEcek","diminutiveSuffixEcekAccented","diminutiveSuffixIcek","diminutiveSuffixIcekAccented","diminutiveSuffixEnek","diminutiveSuffixEnekAccented","diminutiveSuffixInek","diminutiveSuffixInekAccented","diminutiveSuffixAcekAccented","diminutiveSuffixAcek","diminutiveSuffixOcek","diminutiveSuffixUcek","diminutiveSuffixAnek","diminutiveSuffixOnek","diminutiveSuffixUnek","diminutiveSuffixAnekAccented","diminutiveSuffixEck","diminutiveSuffixEckAccented","diminutiveSuffixIck","diminutiveSuffixIckAccented","diminutiveSuffixEnk","diminutiveSuffixEnkAccented","diminutiveSuffixInk","diminutiveSuffixInkAccented","diminutiveSuffixAckAccented","diminutiveSuffixAck","diminutiveSuffixOck","diminutiveSuffixUck","diminutiveSuffixAnk","diminutiveSuffixOnk","diminutiveSuffixUnk","diminutiveSuffixAtk","diminutiveSuffixAnkAccented","diminutiveSuffixUsk","diminutiveSuffixEk","diminutiveSuffixEkAccented","diminutiveSuffixIkAccented","diminutiveSuffixIk","diminutiveSuffixAkAccented","diminutiveSuffixAk","diminutiveSuffixOk","diminutiveSuffixUk","diminutiveSuffixK","removeComparative","comparativeSuffixes","comparativeSuffixesEjs","comparativeSuffixesEjsCaron","removePossessives","possessiveSuffixes","possessiveSuffixOv","possessiveSuffixesUv","possessiveSuffixIn","removeCase","caseSuffixes","caseSuffixAtech","caseSuffixEtem","caseSuffixAtum","caseSuffixEch","caseSuffixIch","caseSuffixIchAccented","caseSuffixEho","caseSuffixEmiCaron","caseSuffixEmi","caseSuffixEmuAccented","caseSuffixEte","caseSuffixEti","caseSuffixIho","caseSuffixIhoAccented","caseSuffixImi","caseSuffixImu","caseSuffixAchAccented","caseSuffixAta","caseSuffixAty","caseSuffixYch","caseSuffixAma","caseSuffixAmi","caseSuffixOve","caseSuffixOvi","caseSuffixYmi","caseSuffixEm","caseSuffixEs","caseSuffixEmAccented","caseSuffixIm","caseSuffixUm","caseSuffixAt","caseSuffixAm","caseSuffixOs","caseSuffixUs","caseSuffixYm","caseSuffixMi","caseSuffixOu","caseSuffixE","caseSuffixI","caseSuffixIAccented","caseSuffixECaron","caseSuffixU","caseSuffixY","caseSuffixURing","caseSuffixA","caseSuffixO","caseSuffixAAccented","caseSuffixEAccented","caseSuffixYAccented","checkWordInFullFormExceptions","paradigm","exceptionStemsWithFullForms","includes","canonicalizeStem","stemsThatBelongToOneWord","nouns","stem","toLowerCase"],"sources":["../../../../../../src/languageProcessing/languages/cs/helpers/internal/stem.js"],"sourcesContent":["/**\n * Copyright (c) 2005, Jacques Savoy\n * Copyright (c) 2013, Jakub Dundalek.\n * Authored by Ljiljana Dolamic from the University of Neuchatel.\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without modification, are permitted provided that\n * the following conditions are met:\n *\n * 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n *\n * 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer\n * in the documentation and/or other materials provided with the distribution.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES,\n * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,\n * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\n * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\n */\n\n/**\n * Takes care of palatalisation.\n *\n * @param {string} word The word to stem.\n * @param {Object} morphologyData The Czech morphology data.\n *\n * @returns {string} The non-palatalised word or the original word if no such suffix is found.\n */\nconst palatalise = function( word, morphologyData ) {\n\tconst palataliseSuffixes = morphologyData.externalStemmer.palataliseSuffixes;\n\tconst len = word.length;\n\n\tif ( word.substring( len - 2, len ) === palataliseSuffixes.palataliseSuffixCi ||\n\t\tword.substring( len - 2, len ) === palataliseSuffixes.palataliseSuffixCe ||\n\t\tword.substring( len - 2, len ) === palataliseSuffixes.palataliseSuffixCiCaron ||\n\t\tword.substring( len - 2, len ) === palataliseSuffixes.palataliseSuffixCeCaron ) {\n\t\treturn word.replace( word.substring( len - 2, len ), palataliseSuffixes.palataliseSuffixK );\n\t}\n\tif ( word.substring( len - 2, len ) === palataliseSuffixes.palataliseSuffixZi ||\n\t\tword.substring( len - 2, len ) === palataliseSuffixes.palataliseSuffixZe ||\n\t\tword.substring( len - 2, len ) === palataliseSuffixes.palataliseSuffixZiCaron ||\n\t\tword.substring( len - 2, len ) === palataliseSuffixes.palataliseSuffixZeCaron ) {\n\t\treturn word.replace( word.substring( len - 2, len ), palataliseSuffixes.palataliseSuffixH );\n\t}\n\tif ( word.substring( len - 3, len ) === palataliseSuffixes.palataliseSuffixCte ||\n\t\tword.substring( len - 3, len ) === palataliseSuffixes.palataliseSuffixCti ||\n\t\tword.substring( len - 3, len ) === palataliseSuffixes.palataliseSuffixCtiAccented ) {\n\t\treturn word.replace( word.substring( len - 3, len ), palataliseSuffixes.palataliseSuffixCk );\n\t}\n\tif ( word.substring( len - 3, len ) === palataliseSuffixes.palataliseSuffixSte ||\n\t\tword.substring( len - 3, len ) === palataliseSuffixes.palataliseSuffixSti ||\n\t\tword.substring( len - 3, len ) === palataliseSuffixes.palataliseSuffixStiAccented ) {\n\t\treturn word.replace( word.substring( len - 3, len ), palataliseSuffixes.palataliseSuffixSk );\n\t}\n\treturn word.slice( 0, -1 );\n};\n\n/**\n * Removes derivational suffixes.\n *\n * @param {string} word The word to stem.\n * @param {Object} morphologyData The Czech morphology data.\n *\n * @returns {string} The word without derivational suffixes or the original word if no such suffix is found.\n */\nconst removeDerivational = function( word, morphologyData ) {\n\tconst derivationalSuffixes = morphologyData.externalStemmer.derivationalSuffixes;\n\tconst len = word.length;\n\n\tif ( ( len > 8 ) &&\n\t\tword.substring( len - 6, len ) === derivationalSuffixes.derivationalSuffixObinec ) {\n\t\treturn word.slice( 0, -6 );\n\t}\n\tif ( len > 7 ) {\n\t\tif ( word.substring( len - 5, len ) === derivationalSuffixes.derivationalSuffixIonar ) {\n\t\t\tword = word.slice( 0, -4 );\n\t\t\treturn palatalise( word, morphologyData );\n\t\t} else if ( word.substring( len - 5, len ) === derivationalSuffixes.derivationalSuffixOvisk ||\n\t\t\tword.substring( len - 5, len ) === derivationalSuffixes.derivationalSuffixOvstv ||\n\t\t\tword.substring( len - 5, len ) === derivationalSuffixes.derivationalSuffixOvist ||\n\t\t\tword.substring( len - 5, len ) === derivationalSuffixes.derivationalSuffixOvnik ) {\n\t\t\treturn word.slice( 0, -5 );\n\t\t}\n\t}\n\tif ( len > 6 ) {\n\t\tif ( word.substring( len - 4, len ) === derivationalSuffixes.derivationalSuffixAsek ||\n\t\t\tword.substring( len - 4, len ) === derivationalSuffixes.derivationalSuffixLoun ||\n\t\t\tword.substring( len - 4, len ) === derivationalSuffixes.derivationalSuffixNost ||\n\t\t\tword.substring( len - 4, len ) === derivationalSuffixes.derivationalSuffixTeln ||\n\t\t\tword.substring( len - 4, len ) === derivationalSuffixes.derivationalSuffixOvec ||\n\t\t\tword.substring( len - 5, len ) === derivationalSuffixes.derivationalSuffixOvik ||\n\t\t\tword.substring( len - 4, len ) === derivationalSuffixes.derivationalSuffixOvtv ||\n\t\t\tword.substring( len - 4, len ) === derivationalSuffixes.derivationalSuffixOvin ||\n\t\t\tword.substring( len - 4, len ) === derivationalSuffixes.derivationalSuffixStin ) {\n\t\t\treturn word.slice( 0, -4 );\n\t\t} else if ( word.substring( len - 4, len ) === derivationalSuffixes.derivationalSuffixEnic ||\n\t\t\tword.substring( len - 4, len ) === derivationalSuffixes.derivationalSuffixInec ||\n\t\t\tword.substring( len - 4, len ) === derivationalSuffixes.derivationalSuffixItel ) {\n\t\t\tword = word.slice( 0, -3 );\n\t\t\treturn palatalise( word, morphologyData );\n\t\t}\n\t}\n\tif ( len > 5 ) {\n\t\tif ( word.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixEnk ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixIan ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixIst ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixIsk ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixIstCaron ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixItb ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixIrn ) {\n\t\t\tword = word.slice( 0, -2 );\n\t\t\treturn palatalise( word, morphologyData );\n\t\t} else if ( word.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixArn ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixOch ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixOst ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixOvn ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixOun ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixOut ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixOus ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixUsk ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixKyn ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixCan ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixKar ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixNer ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixNik ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixCtv ||\n\t\t\tword.substring( len - 3, len ) === derivationalSuffixes.derivationalSuffixStv ) {\n\t\t\treturn word.slice( 0, -3 );\n\t\t}\n\t}\n\tif ( len > 4 ) {\n\t\tif ( word.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixAcAccented ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixAc ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixAnAccented ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixAn ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixAr ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixAs ) {\n\t\t\treturn word.slice( 0, -2 );\n\t\t} else if ( word.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixEc ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixEn ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixEnCaron ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixEr ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixIr ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixIc ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixIn ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixInAccented ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixIt ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixIv ) {\n\t\t\tword = word.slice( 0, -1 );\n\t\t\treturn palatalise( word, morphologyData );\n\t\t} else if ( word.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixOb ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixOt ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixOv ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixOn ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixUl ||\n\t\t word.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixYn ||\n\t\t word.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixCk ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixCn ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixDl ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixNk ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixTv ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixTk ||\n\t\t\tword.substring( len - 2, len ) === derivationalSuffixes.derivationalSuffixVk ) {\n\t\t\treturn word.slice( 0, -2 );\n\t\t}\n\t}\n\tif ( len > 3 ) {\n\t\tif ( word.charAt( word.length - 1 ) === derivationalSuffixes.derivationalSuffixC ||\n\t\t\tword.charAt( word.length - 1 ) === derivationalSuffixes.derivationalSuffixCCaron ||\n\t\t\tword.charAt( word.length - 1 ) === derivationalSuffixes.derivationalSuffixK ||\n\t\t\tword.charAt( word.length - 1 ) === derivationalSuffixes.derivationalSuffixL ||\n\t\t\tword.charAt( word.length - 1 ) === derivationalSuffixes.derivationalSuffixN ||\n\t\t\tword.charAt( word.length - 1 ) === derivationalSuffixes.derivationalSuffixT ) {\n\t\t\treturn word.slice( 0, -1 );\n\t\t}\n\t}\n\treturn word;\n};\n\n/**\n * Removes augmentative suffixes.\n *\n * @param {string} word The word to stem.\n * @param {Object} morphologyData The Czech morphology data.\n *\n * @returns {string} The word without augmentative suffixes or the original word if no such suffix is found.\n */\nconst removeAugmentative = function( word, morphologyData ) {\n\tconst augmentativeSuffixes = morphologyData.externalStemmer.augmentativeSuffixes;\n\tconst len = word.length;\n\n\tif ( ( len > 6 ) &&\n\t\tword.substring( len - 4, len ) === augmentativeSuffixes.augmentativeSuffixAjzn ) {\n\t\treturn word.slice( 0, -4 );\n\t}\n\tif ( ( len > 5 ) &&\n\t\t( word.substring( len - 3, len ) === augmentativeSuffixes.augmentativeSuffixIzn ) ||\n\t\tword.substring( len - 3, len ) === augmentativeSuffixes.augmentativeSuffixIsk ) {\n\t\tword = word.slice( 0, -2 );\n\t\treturn palatalise( word, morphologyData );\n\t}\n\treturn word;\n};\n\n/**\n * Removes diminutive suffixes.\n *\n * @param {string} word The word to stem.\n * @param {Object} morphologyData The Czech morphology data.\n *\n * @returns {string} The word without diminutive suffixes or the original word if no such suffix is found.\n */\nconst removeDiminutive = function( word, morphologyData ) {\n\tconst diminutiveSuffixes = morphologyData.externalStemmer.diminutiveSuffixes;\n\tconst len = word.length;\n\n\tif ( ( len > 7 ) &&\n\t\tword.substring( len - 5, len ) === diminutiveSuffixes.diminutiveSuffixOusek ) {\n\t\treturn word.slice( 0, -5 );\n\t}\n\tif ( len > 6 ) {\n\t\tif ( word.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixEcek ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixEcekAccented ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixIcek ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixIcekAccented ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixEnek ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixEnekAccented ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixInek ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixInekAccented ) {\n\t\t\tword = word.slice( 0, -3 );\n\t\t\treturn palatalise( word, morphologyData );\n\t\t}\n\t\tif ( word.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixAcekAccented ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixAcek ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixOcek ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixUcek ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixAnek ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixOnek ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixUnek ||\n\t\t\tword.substring( len - 4, len ) === diminutiveSuffixes.diminutiveSuffixAnekAccented ) {\n\t\t\treturn word.slice( 0, -4 );\n\t\t}\n\t}\n\tif ( len > 5 ) {\n\t\tif ( word.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixEck ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixEckAccented ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixIck ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixIckAccented ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixEnk ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixEnkAccented ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixInk ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixInkAccented ) {\n\t\t\tword = word.slice( 0, -3 );\n\t\t\treturn palatalise( word, morphologyData );\n\t\t}\n\t\tif ( word.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixAckAccented ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixAck ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixOck ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixUck ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixAnk ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixOnk ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixUnk ) {\n\t\t\treturn word.slice( 0, -3 );\n\t\t}\n\t\tif ( word.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixAtk ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixAnkAccented ||\n\t\t\tword.substring( len - 3, len ) === diminutiveSuffixes.diminutiveSuffixUsk ) {\n\t\t\treturn word.slice( 0, -3 );\n\t\t}\n\t}\n\tif ( len > 4 ) {\n\t\tif ( word.substring( len - 2, len ) === diminutiveSuffixes.diminutiveSuffixEk ||\n\t\t\tword.substring( len - 2, len ) === diminutiveSuffixes.diminutiveSuffixEkAccented ||\n\t\t\tword.substring( len - 2, len ) === diminutiveSuffixes.diminutiveSuffixIkAccented ||\n\t\t\tword.substring( len - 2, len ) === diminutiveSuffixes.diminutiveSuffixIk ) {\n\t\t\tword = word.slice( 0, -1 );\n\t\t\treturn palatalise( word, morphologyData );\n\t\t}\n\t\tif ( word.substring( len - 2, len ) === diminutiveSuffixes.diminutiveSuffixAkAccented ||\n\t\t\tword.substring( len - 2, len ) === diminutiveSuffixes.diminutiveSuffixAk ||\n\t\t\tword.substring( len - 2, len ) === diminutiveSuffixes.diminutiveSuffixOk ||\n\t\t\tword.substring( len - 2, len ) === diminutiveSuffixes.diminutiveSuffixUk ) {\n\t\t\treturn word.slice( 0, -1 );\n\t\t}\n\t}\n\tif ( ( len > 3 ) &&\n\t\tword.substring( len - 1, len ) === diminutiveSuffixes.diminutiveSuffixK ) {\n\t\treturn word.slice( 0, -1 );\n\t}\n\treturn word;\n};\n\n/**\n * Removes comparative suffixes.\n *\n * @param {string} word The word to stem.\n * @param {Object} morphologyData The Czech morphology data.\n *\n * @returns {string} The word without comparative suffixes or the original word if no such suffix is found.\n */\nconst removeComparative = function( word, morphologyData ) {\n\tconst comparativeSuffixes = morphologyData.externalStemmer.comparativeSuffixes;\n\tconst len = word.length;\n\n\tif ( ( len > 5 ) &&\n\t\t( word.substring( len - 3, len ) === comparativeSuffixes.comparativeSuffixesEjs ) ||\n\t\tword.substring( len - 3, len ) === comparativeSuffixes.comparativeSuffixesEjsCaron ) {\n\t\tword = word.slice( 0, -2 );\n\t\treturn palatalise( word, morphologyData );\n\t}\n\treturn word;\n};\n\n/**\n * Removes possessive suffixes.\n *\n * @param {string} word The word to stem.\n * @param {Object} morphologyData The Czech morphology data.\n *\n * @returns {string} The word without possessive suffixes or the original word if no such suffix is found.\n */\nconst removePossessives = function( word, morphologyData ) {\n\tconst possessiveSuffixes = morphologyData.externalStemmer.possessiveSuffixes;\n\tconst len = word.length;\n\n\tif ( len > 5 ) {\n\t\tif ( word.substring( len - 2, len ) === possessiveSuffixes.possessiveSuffixOv ) {\n\t\t\treturn word.slice( 0, -2 );\n\t\t}\n\t\tif ( word.substring( len - 2, len ) === possessiveSuffixes.possessiveSuffixesUv ) {\n\t\t\treturn word.slice( 0, -2 );\n\t\t}\n\t\tif ( word.substring( len - 2, len ) === possessiveSuffixes.possessiveSuffixIn ) {\n\t\t\tword = word.slice( 0, -1 );\n\t\t\treturn palatalise( word, morphologyData );\n\t\t}\n\t}\n\treturn word;\n};\n\n/**\n * Removes case suffixes.\n *\n * @param {string} word The word to stem.\n * @param {Object} morphologyData The Czech morphology data.\n *\n * @returns {string} The word without case suffixes or the original word if no such suffix is found.\n */\nconst removeCase = function( word, morphologyData ) {\n\tconst caseSuffixes = morphologyData.externalStemmer.caseSuffixes;\n\tconst len = word.length;\n\n\tif ( ( len > 7 ) &&\n\t\tword.substring( len - 5, len ) === caseSuffixes.caseSuffixAtech ) {\n\t\treturn word.slice( 0, -5 );\n\t}\n\tif ( len > 6 ) {\n\t\tif ( word.substring( len - 4, len ) === caseSuffixes.caseSuffixEtem ) {\n\t\t\tword = word.slice( 0, -3 );\n\t\t\treturn palatalise( word, morphologyData );\n\t\t}\n\t\tif ( word.substring( len - 4, len ) === caseSuffixes.caseSuffixAtum ) {\n\t\t\treturn word.slice( 0, -4 );\n\t\t}\n\t}\n\tif ( len > 5 ) {\n\t\tif ( word.substring( len - 3, len ) === caseSuffixes.caseSuffixEch ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixIch ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixIchAccented ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixEho ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixEmiCaron ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixEmi ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixEmuAccented ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixEte ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixEti ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixIho ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixIhoAccented ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixImi ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixImu ) {\n\t\t\tword = word.slice( 0, -2 );\n\t\t\treturn palatalise( word, morphologyData );\n\t\t} else if ( word.substring( len - 3, len ) === caseSuffixes.caseSuffixAchAccented ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixAta ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixAty ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixYch ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixAma ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixAmi ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixOve ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixOvi ||\n\t\t\tword.substring( len - 3, len ) === caseSuffixes.caseSuffixYmi ) {\n\t\t\treturn word.slice( 0, -3 );\n\t\t}\n\t}\n\tif ( len > 4 ) {\n\t\tif ( word.substring( len - 2, len ) === caseSuffixes.caseSuffixEm ) {\n\t\t\tword = word.slice( 0, -1 );\n\t\t\treturn palatalise( word, morphologyData );\n\t\t} else if ( word.substring( len - 2, len ) === caseSuffixes.caseSuffixEs ||\n\t\t\tword.substring( len - 2, len ) === caseSuffixes.caseSuffixEmAccented ||\n\t\t\tword.substring( len - 2, len ) === caseSuffixes.caseSuffixIm ) {\n\t\t\tword = word.slice( 0, -2 );\n\t\t\treturn palatalise( word, morphologyData );\n\t\t} else if ( word.substring( len - 2, len ) === caseSuffixes.caseSuffixUm ||\n\t\t\tword.substring( len - 2, len ) === caseSuffixes.caseSuffixAt ||\n\t\t\tword.substring( len - 2, len ) === caseSuffixes.caseSuffixAm ||\n\t\t\tword.substring( len - 2, len ) === caseSuffixes.caseSuffixOs ||\n\t\t\tword.substring( len - 2, len ) === caseSuffixes.caseSuffixUs ||\n\t\t\tword.substring( len - 2, len ) === caseSuffixes.caseSuffixYm ||\n\t\t\tword.substring( len - 2, len ) === caseSuffixes.caseSuffixMi ||\n\t\t\tword.substring( len - 2, len ) === caseSuffixes.caseSuffixOu ) {\n\t\t\treturn word.slice( 0, -2 );\n\t\t}\n\t}\n\tif ( len > 3 ) {\n\t\tif ( word.substring( len - 1, len ) === caseSuffixes.caseSuffixE ||\n\t\t\tword.substring( len - 1, len ) === caseSuffixes.caseSuffixI ||\n\t\t\tword.substring( len - 1, len ) === caseSuffixes.caseSuffixIAccented ||\n\t\t\tword.substring( len - 1, len ) === caseSuffixes.caseSuffixECaron ) {\n\t\t\treturn palatalise( word, morphologyData );\n\t\t} else if ( word.substring( len - 1, len ) === caseSuffixes.caseSuffixU ||\n\t\t\tword.substring( len - 1, len ) === caseSuffixes.caseSuffixY ||\n\t\t\tword.substring( len - 1, len ) === caseSuffixes.caseSuffixURing ||\n\t\t\tword.substring( len - 1, len ) === caseSuffixes.caseSuffixA ||\n\t\t\tword.substring( len - 1, len ) === caseSuffixes.caseSuffixO ||\n\t\t\tword.substring( len - 1, len ) === caseSuffixes.caseSuffixAAccented ||\n\t\t\tword.substring( len - 1, len ) === caseSuffixes.caseSuffixEAccented ||\n\t\t\tword.substring( len - 1, len ) === caseSuffixes.caseSuffixYAccented ) {\n\t\t\treturn word.slice( 0, -1 );\n\t\t}\n\t}\n\treturn word;\n};\n\n/**\n * Checks whether a word is in the full-form exception list and if so returns the canonical stem.\n *\n * @param {string} word\t The word to be checked.\n * @param {Object} morphologyData The Czech morphology data.\n *\n * @returns {string} The canonical stem if word was found on the list or the original word otherwise.\n */\nconst checkWordInFullFormExceptions = function( word, morphologyData ) {\n\tfor ( const paradigm of morphologyData.externalStemmer.exceptionStemsWithFullForms ) {\n\t\tif ( paradigm[ 1 ].includes( word ) ) {\n\t\t\treturn paradigm[ 0 ];\n\t\t}\n\t}\n\treturn word;\n};\n\n/**\n * Check whether the stem is on the exception list of stems that belong to one word. If it is, returns the canonical stem.\n *\n * @param {string}\tword\t\t\tThe stemmed word.\n * @param {Object} morphologyData The Czech morphology data.\n *\n * @returns {string} The canonical stem if word was found on the list or the original word otherwise.\n */\nconst canonicalizeStem = function( word, morphologyData ) {\n\t// Checks the nouns list.\n\tfor ( const paradigm of morphologyData.externalStemmer.stemsThatBelongToOneWord.nouns ) {\n\t\tif ( paradigm.includes( word ) ) {\n\t\t\treturn paradigm[ 0 ];\n\t\t}\n\t}\n\treturn word;\n};\n\n/**\n * Stems Czech words.\n *\n * @param {string} word The word to stem.\n * @param {Object} morphologyData The Czech morphology data.\n *\n * @returns {string} The stemmed word.\n */\nexport default function stem( word, morphologyData ) {\n\tword = word.toLowerCase();\n\t// Checks if the word is on an exception list for which all forms of a word and its stem are listed.\n\tword = checkWordInFullFormExceptions( word, morphologyData );\n\t// Removes case endings from nouns and adjectives.\n\tword = removeCase( word, morphologyData );\n\t// Removes possessive -ov- and -in- endings from names.\n\tword = removePossessives( word, morphologyData );\n\t// Removes comparative endings.\n\tword = removeComparative( word, morphologyData );\n\t// Removes diminutive endings.\n\tword = removeDiminutive( word, morphologyData );\n\t// Removes augmentatives endings.\n\tword = removeAugmentative( word, morphologyData );\n\t// Removes derivational suffixes from nouns.\n\tword = removeDerivational( word, morphologyData );\n\t// Checks whether the stem is on the exception list of stems that belong to one word.\n\tword = canonicalizeStem( word, morphologyData );\n\n\treturn word;\n}\n"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,38 @@
1
+ import { languageProcessing } from "../../../../index.js";
2
+ import getParticiples from "../helpers/internal/getParticiples";
3
+ const {
4
+ values
5
+ } = languageProcessing;
6
+ const {
7
+ Clause
8
+ } = values;
9
+
10
+ /**
11
+ * Creates a Clause object for the Czech language.
12
+ */
13
+ class CzechClause extends Clause {
14
+ /**
15
+ * Constructor.
16
+ *
17
+ * @param {string} clauseText The text of the clause.
18
+ * @param {Array} auxiliaries The auxiliaries.
19
+ *
20
+ * @constructor
21
+ */
22
+ constructor(clauseText, auxiliaries) {
23
+ super(clauseText, auxiliaries);
24
+ this._participles = getParticiples(this.getClauseText());
25
+ this.checkParticiples();
26
+ }
27
+
28
+ /**
29
+ * Sets the clause passiveness to true if there is a participle present in the clause, otherwise sets it to false.
30
+ *
31
+ * @returns {void}
32
+ */
33
+ checkParticiples() {
34
+ this.setPassive(this.getParticiples().length > 0);
35
+ }
36
+ }
37
+ export default CzechClause;
38
+ //# sourceMappingURL=Clause.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Clause.js","names":["languageProcessing","getParticiples","values","Clause","CzechClause","constructor","clauseText","auxiliaries","_participles","getClauseText","checkParticiples","setPassive","length"],"sources":["../../../../../src/languageProcessing/languages/cs/values/Clause.js"],"sourcesContent":["import {languageProcessing} from '@axyseo/index.js';\nimport getParticiples from '../helpers/internal/getParticiples';\nconst {values} = languageProcessing;\nconst {Clause} = values;\n\n/**\n * Creates a Clause object for the Czech language.\n */\nclass CzechClause extends Clause {\n /**\n * Constructor.\n *\n * @param {string} clauseText The text of the clause.\n * @param {Array} auxiliaries The auxiliaries.\n *\n * @constructor\n */\n constructor(clauseText, auxiliaries) {\n super(clauseText, auxiliaries);\n this._participles = getParticiples(this.getClauseText());\n this.checkParticiples();\n }\n\n /**\n * Sets the clause passiveness to true if there is a participle present in the clause, otherwise sets it to false.\n *\n * @returns {void}\n */\n checkParticiples() {\n this.setPassive(this.getParticiples().length > 0);\n }\n}\n\nexport default CzechClause;\n"],"mappings":"AAAA,SAAQA,kBAAkB;AAC1B,OAAOC,cAAc;AACrB,MAAM;EAACC;AAAM,CAAC,GAAGF,kBAAkB;AACnC,MAAM;EAACG;AAAM,CAAC,GAAGD,MAAM;;AAEvB;AACA;AACA;AACA,MAAME,WAAW,SAASD,MAAM,CAAC;EAC/B;AACF;AACA;AACA;AACA;AACA;AACA;AACA;EACEE,WAAWA,CAACC,UAAU,EAAEC,WAAW,EAAE;IACnC,KAAK,CAACD,UAAU,EAAEC,WAAW,CAAC;IAC9B,IAAI,CAACC,YAAY,GAAGP,cAAc,CAAC,IAAI,CAACQ,aAAa,CAAC,CAAC,CAAC;IACxD,IAAI,CAACC,gBAAgB,CAAC,CAAC;EACzB;;EAEA;AACF;AACA;AACA;AACA;EACEA,gBAAgBA,CAAA,EAAG;IACjB,IAAI,CAACC,UAAU,CAAC,IAAI,CAACV,cAAc,CAAC,CAAC,CAACW,MAAM,GAAG,CAAC,CAAC;EACnD;AACF;AAEA,eAAeR,WAAW","ignoreList":[]}