globalThis.UNWRAP = (t, ...args) => { if (t == null) { throw new Error( args.length > 0 ? util.format(...args) : "UNWRAP(" + t + ")", ); } return t; }; globalThis.ASSERT = assert.ok; import * as util from "node:util"; import * as assert from "node:assert";