mirror of
https://github.com/denoland/deno.git
synced 2024-12-12 10:37:52 -05:00
8 lines
80 B
JavaScript
8 lines
80 B
JavaScript
|
function foobar() {
|
||
|
console.log("foobar");
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
foobar,
|
||
|
};
|