@ethnolib/find-language 0.0.7 → 0.0.9
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.
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.mjs +12 -0
- package/package.json +1 -2
- package/scriptSamples.d.ts +3 -0
package/index.mjs
CHANGED
|
@@ -294224,6 +294224,17 @@ function ib(l) {
|
|
|
294224
294224
|
code: r.code
|
|
294225
294225
|
};
|
|
294226
294226
|
}
|
|
294227
|
+
const ob = {
|
|
294228
|
+
latn: "A B C D",
|
|
294229
|
+
arab: "ا ب ت ث",
|
|
294230
|
+
deva: "अ आ इ ई",
|
|
294231
|
+
cyrl: "А Б В Г",
|
|
294232
|
+
tibt: "ཀ ཁ ག གྷ",
|
|
294233
|
+
ethi: "ሀ ሁ ሂ ሃ",
|
|
294234
|
+
thai: "ก ข ค ฆ",
|
|
294235
|
+
beng: "অ আ ই ঈ",
|
|
294236
|
+
mymr: "က ခ ဂ ဃ"
|
|
294237
|
+
};
|
|
294227
294238
|
export {
|
|
294228
294239
|
ai as END_OF_MATCH_MARKER,
|
|
294229
294240
|
$s as START_OF_MATCH_MARKER,
|
|
@@ -294245,6 +294256,7 @@ export {
|
|
|
294245
294256
|
ib as getScriptBySubtag,
|
|
294246
294257
|
Fy as getShortestSufficientLangtag,
|
|
294247
294258
|
qm as prioritizeLangByKeywords,
|
|
294259
|
+
ob as scriptSamples,
|
|
294248
294260
|
Qh as searchForLanguage,
|
|
294249
294261
|
Js as stripDemarcation,
|
|
294250
294262
|
Uh as stripResultMetadata,
|
package/package.json
CHANGED
|
@@ -3,13 +3,12 @@
|
|
|
3
3
|
"description": "A library for fuzzy-searching for languages and other utils for language choosers",
|
|
4
4
|
"author": "SIL Global",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.9",
|
|
7
7
|
"main": "./index.js",
|
|
8
8
|
"types": "./index.d.ts",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"langtag-processing": "ts-node-esm ./langtagProcessing.ts",
|
|
11
11
|
"build": "nx vite:build",
|
|
12
|
-
"dev": "vite --open",
|
|
13
12
|
"typecheck": "tsc",
|
|
14
13
|
"test": "nx vite:test --config vitest.config.ts"
|
|
15
14
|
},
|