MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 10 lines 255 B view raw
1async function main() { 2 const mod = await import('./export-default-module.js'); 3 console.log('module:', mod); 4 console.log('default:', mod.default); 5 if (typeof mod.default === 'function') { 6 console.log(mod.default('world')); 7 } 8} 9 10void main();