remove log

This commit is contained in:
Phillip Lang Martinez 2022-08-26 00:53:12 +03:00
parent da2f1a0afa
commit 66a3f52e11

View File

@ -28,7 +28,7 @@ async function* countDown(count, callback) {
yield count--;
await new Promise((r) => setTimeout(r, 1000));
if(count === 0){
console.log('hello call')
callback()
}
}