1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-01 16:51:13 -05:00
denoland-deno/tests/registry/npm/@denotest/cjs-default-export/1.0.0/index.js

18 lines
298 B
JavaScript
Raw Normal View History

Object.defineProperty(module.exports, "__esModule", {
value: true
});
module.exports["default"] = function() {
return 1;
};
module.exports["named"] = function() {
return 2;
};
class MyClass {
static someStaticMethod() {
return "static method";
}
}
module.exports.MyClass = MyClass;