23 lines
477 B
JavaScript
23 lines
477 B
JavaScript
import wasm from "./diplomat-wasm.mjs"
|
|
import * as diplomatRuntime from "./diplomat-runtime.mjs"
|
|
|
|
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",
|
|
};
|