1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-06-16 22:41:24 +00:00
Files
wasm-bindgen/tests/wasm/vendor_prefix.js

12 lines
216 B
JavaScript
Raw Normal View History

exports.import_me = function() {};
global.webkitMySpecialApi = class {
foo() { return 123; }
};
global.MySpecialApi2 = class {
foo() { return 124; }
};
global.bMySpecialApi3 = class {
foo() { return 125; }
};