1 // This is to test if Deno would die at 2nd await 2 // See https://github.com/denoland/deno/issues/919 3 (async () => { 4 const currDirInfo = await Deno.stat("."); 5 const parentDirInfo = await Deno.stat(".."); 6 console.log(currDirInfo.isDirectory); 7 console.log(parentDirInfo.isFile); 8 })();