mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
20 lines
936 B
JavaScript
20 lines
936 B
JavaScript
|
"use strict";
|
||
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||
|
if (k2 === undefined) k2 = k;
|
||
|
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||
|
}) : (function(o, m, k, k2) {
|
||
|
if (k2 === undefined) k2 = k;
|
||
|
o[k2] = m[k];
|
||
|
}));
|
||
|
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||
|
};
|
||
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
||
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||
|
};
|
||
|
// collision will occur with __esModule in other_file.js
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
const other_file_1 = __importDefault(require("./other_file"));
|
||
|
__exportStar(require("./other_file"), exports);
|
||
|
exports.default = other_file_1.default;
|