mirror of
https://github.com/denoland/deno.git
synced 2024-11-15 16:43:44 -05:00
7e2c7fb6c5
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
25 lines
415 B
Text
25 lines
415 B
Text
const lib = function() {
|
|
const a = function() {
|
|
const a1 = [];
|
|
return {
|
|
a: a1
|
|
};
|
|
}();
|
|
const b = function() {
|
|
const b1 = [];
|
|
return {
|
|
b: b1
|
|
};
|
|
}();
|
|
const c = function() {
|
|
const c1 = [];
|
|
return {
|
|
c: c1
|
|
};
|
|
}();
|
|
const mod = [];
|
|
return {
|
|
mod
|
|
};
|
|
}();
|
|
console.log(lib);
|