summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/js/package/lib/ICU4XCollatorStrength.js
blob: 4a8ca99fd2d25ae283f3f7fb0fa6e0223d26bc5a (plain)
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
import wasm from "./diplomat-wasm.mjs"
import * as diplomatRuntime from "./diplomat-runtime.js"

export const ICU4XCollatorStrength_js_to_rust = {
  "Auto": 0,
  "Primary": 1,
  "Secondary": 2,
  "Tertiary": 3,
  "Quaternary": 4,
  "Identical": 5,
};

export const ICU4XCollatorStrength_rust_to_js = {
  [0]: "Auto",
  [1]: "Primary",
  [2]: "Secondary",
  [3]: "Tertiary",
  [4]: "Quaternary",
  [5]: "Identical",
};

export const ICU4XCollatorStrength = {
  "Auto": "Auto",
  "Primary": "Primary",
  "Secondary": "Secondary",
  "Tertiary": "Tertiary",
  "Quaternary": "Quaternary",
  "Identical": "Identical",
};