UNPKG

nodent

Version:

NoDent - Asynchronous Javascript language extensions

21 lines (20 loc) 271 B
<html> <head> <title>Nodent SPA test</title> </head> <script> async function sleep(t) { setTimeout(function(){ async return undefined ; },t) ; } </script> <script> console.log("Yawn") ; await sleep(1000) ; console.log("Yawned") ; </script> <body> OK </body> </html>