mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
|
Object.defineProperty(module.exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
module.exports["default"] = function() {
|
||
|
return 3;
|
||
|
};
|
||
|
module.exports["named"] = function() {
|
||
|
return 4;
|
||
|
};
|