mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-23 10:42:50 +02:00
11 lines
216 B
JavaScript
11 lines
216 B
JavaScript
exports.import_me = function() {};
|
|
|
|
global.webkitMySpecialApi = class {
|
|
foo() { return 123; }
|
|
};
|
|
global.MySpecialApi2 = class {
|
|
foo() { return 124; }
|
|
};
|
|
global.bMySpecialApi3 = class {
|
|
foo() { return 125; }
|
|
};
|