summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/js/package/lib/ICU4XDecomposed.js
blob: 8f5e80f5e43b36b4b0a6f93b684e68832f72d798 (plain)
1
2
3
4
5
6
7
8
9
import wasm from "./diplomat-wasm.mjs"
import * as diplomatRuntime from "./diplomat-runtime.js"

export class ICU4XDecomposed {
  constructor(underlying) {
    this.first = String.fromCharCode((new Uint32Array(wasm.memory.buffer, underlying, 1))[0]);
    this.second = String.fromCharCode((new Uint32Array(wasm.memory.buffer, underlying + 4, 1))[0]);
  }
}