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