1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-11 01:58:05 -05:00
denoland-deno/tests/registry/npm/@denotest/cjs-reexport-collision/1.0.0/other_file.js

11 lines
232 B
JavaScript
Raw Normal View History

"use strict";
class Hello {
sayHello() {
console.log("Hi.");
}
}
// conflict will be with __esModule
Object.defineProperty(exports, "__esModule", { value: true });
exports.hello = new Hello();
exports.default = new Hello();