@kobakazu0429/wasmer-wasi
Version:
Isomorphic Javascript library for interacting with WASI Modules in Node.js and the Browser. 📚
11 lines (10 loc) • 425 B
JavaScript
;
// A very simple workaround for Big int. Works in conjunction with our custom
// Dataview workaround at ./dataview.ts
Object.defineProperty(exports, "__esModule", { value: true });
const globalObj = typeof globalThis !== "undefined"
? globalThis
: typeof global !== "undefined"
? global
: {};
exports.BigIntPolyfill = typeof BigInt !== "undefined" ? BigInt : globalObj.BigInt || Number;