mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
40fc5f55ea
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>
20 lines
335 B
Text
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 };
|