1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/bundle/fixture09.out
Luca Casonato 40fc5f55ea
chore: update crates (#9251)
Updates SWC, dprint, deno_lint, deno_doc, serde, and Tokio (to 1.1.0).

Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2021-01-26 17:00:40 +01:00

20 lines
335 B
Text

const mod = function() {
function a(...d) {
return d.join(" ");
}
return {
a
};
}();
const mod1 = function() {
function a(...d) {
return d.join("/");
}
return {
a
};
}();
const k = globalThis.value ? mod : mod1;
const { a: a2 , } = k;
const a1 = a2;
export { a1 as a };