blob: 5f74b5d1a5abf191f322dbf772b66a72503da02d (
plain)
1
2
3
4
5
6
7
8
9
10
|
import wasm from "./diplomat-wasm.mjs"
import * as diplomatRuntime from "./diplomat-runtime.js"
import { ICU4XWeekRelativeUnit_js_to_rust, ICU4XWeekRelativeUnit_rust_to_js } from "./ICU4XWeekRelativeUnit.js"
export class ICU4XWeekOf {
constructor(underlying) {
this.week = (new Uint16Array(wasm.memory.buffer, underlying, 1))[0];
this.unit = ICU4XWeekRelativeUnit_rust_to_js[diplomatRuntime.enumDiscriminant(wasm, underlying + 4)];
}
}
|