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/js-sys/tests/wasm/Object.js

12 lines
214 B
JavaScript

const symbol_key = Symbol();
exports.map_with_symbol_key = function() {
return { [symbol_key]: 42 };
};
exports.symbol_key = function() {
return symbol_key;
};
exports.Foo = class {};
exports.Bar = class {};