mirror of
https://github.com/denoland/deno.git
synced 2024-11-27 16:10:57 -05:00
7 lines
109 B
JavaScript
7 lines
109 B
JavaScript
|
import order from "./order.js";
|
||
|
|
||
|
const end = Date.now() + 500;
|
||
|
while (end < Date.now()) {}
|
||
|
|
||
|
order.push("d");
|