blob: c52030b79fc94b9351117964ea077ac389a3c741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import wasm from "./diplomat-wasm.mjs"
import * as diplomatRuntime from "./diplomat-runtime.js"
export const ICU4XLineBreakStrictness_js_to_rust = {
"Loose": 0,
"Normal": 1,
"Strict": 2,
"Anywhere": 3,
};
export const ICU4XLineBreakStrictness_rust_to_js = {
[0]: "Loose",
[1]: "Normal",
[2]: "Strict",
[3]: "Anywhere",
};
export const ICU4XLineBreakStrictness = {
"Loose": "Loose",
"Normal": "Normal",
"Strict": "Strict",
"Anywhere": "Anywhere",
};
|