This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/zeroidc/vendor/wasm-bindgen/tests/wasm/structural.js

14 lines
266 B
JavaScript

const wasm = require('wasm-bindgen-test.js');
const assert = require('assert');
exports.js_works = () => {
let called = false;
wasm.run({
bar() {
called = true;
},
baz: 1,
});
assert.strictEqual(called, true);
};