-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstemmers.ts
32 lines (32 loc) · 1.8 KB
/
stemmers.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
export const stemmers = {
arabic: async () => await import("./source/arabic.js"),
armenian: async () => await import("./source/armenian.js"),
basque: async () => await import("./source/basque.js"),
catalan: async () => await import("./source/catalan.js"),
danish: async () => await import("./source/danish.js"),
dutch: async () => await import("./source/dutch.js"),
english: async () => await import("./source/english.js"),
finnish: async () => await import("./source/finnish.js"),
french: async () => await import("./source/french.js"),
german: async () => await import("./source/german.js"),
greek: async () => await import("./source/greek.js"),
hindi: async () => await import("./source/hindi.js"),
hungarian: async () => await import("./source/hungarian.js"),
indonesian: async () => await import("./source/indonesian.js"),
irish: async () => await import("./source/irish.js"),
italian: async () => await import("./source/italian.js"),
kraaij_pohlmann: async () => await import("./source/kraaij_pohlmann.js"),
lithuanian: async () => await import("./source/lithuanian.js"),
lovins: async () => await import("./source/lovins.js"),
nepali: async () => await import("./source/nepali.js"),
norwegian: async () => await import("./source/norwegian.js"),
porter: async () => await import("./source/porter.js"),
portuguese: async () => await import("./source/portuguese.js"),
romanian: async () => await import("./source/romanian.js"),
russian: async () => await import("./source/russian.js"),
serbian: async () => await import("./source/serbian.js"),
spanish: async () => await import("./source/spanish.js"),
swedish: async () => await import("./source/swedish.js"),
tamil: async () => await import("./source/tamil.js"),
turkish: async () => await import("./source/turkish.js"),
};