This commit is contained in:
Kayce Basques 2017-05-05 13:33:50 -07:00
Родитель d5601f0092
Коммит 652f9fc810
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -21,13 +21,13 @@ setInterval(() => 42, 200);
async function test() {
const hello = "world";
debugger;
const tmp = await wait(1000);
console.log(tmp);
return hello;
}
async function runTest() {
debugger;
let result = await test();
console.log(result);
}