mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
8 lines
226 B
JavaScript
8 lines
226 B
JavaScript
var npmlog = module.exports = new class {
|
|
on(s) {
|
|
}
|
|
}();
|
|
npmlog.on("hi"), module.exports.on("hi"), npmlog.x = 1, module.exports.y = 2, npmlog.y, module.exports.x;
|
|
var npmlog = require("./npmlog");
|
|
npmlog.x, npmlog.on;
|