mirror of
https://github.com/denoland/deno.git
synced 2024-11-29 16:30:56 -05:00
parent
7c62b7b043
commit
23a7ea9c85
2 changed files with 6 additions and 4 deletions
|
@ -44,14 +44,15 @@ let System, __instantiate;
|
||||||
|
|
||||||
function gE(exp) {
|
function gE(exp) {
|
||||||
return (id, v) => {
|
return (id, v) => {
|
||||||
v = typeof id === "string" ? { [id]: v } : id;
|
const e = typeof id === "string" ? { [id]: v } : id;
|
||||||
for (const [id, value] of Object.entries(v)) {
|
for (const [id, value] of Object.entries(e)) {
|
||||||
Object.defineProperty(exp, id, {
|
Object.defineProperty(exp, id, {
|
||||||
value,
|
value,
|
||||||
writable: true,
|
writable: true,
|
||||||
enumerable: true,
|
enumerable: true,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
return v;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -94,8 +94,8 @@ var System, __instantiate;
|
||||||
function gE(exp) {
|
function gE(exp) {
|
||||||
return function (id, v) {
|
return function (id, v) {
|
||||||
var _a;
|
var _a;
|
||||||
v = typeof id === "string" ? ((_a = {}), (_a[id] = v), _a) : id;
|
var e = typeof id === "string" ? ((_a = {}), (_a[id] = v), _a) : id;
|
||||||
for (var _i = 0, _b = Object.entries(v); _i < _b.length; _i++) {
|
for (var _i = 0, _b = Object.entries(e); _i < _b.length; _i++) {
|
||||||
var _c = _b[_i],
|
var _c = _b[_i],
|
||||||
id_1 = _c[0],
|
id_1 = _c[0],
|
||||||
value = _c[1];
|
value = _c[1];
|
||||||
|
@ -105,6 +105,7 @@ var System, __instantiate;
|
||||||
enumerable: true,
|
enumerable: true,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
return v;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
function rF(main) {
|
function rF(main) {
|
||||||
|
|
Loading…
Reference in a new issue