mirror of
https://github.com/denoland/deno.git
synced 2025-02-03 13:16:08 -05:00
6f69f36924
Co-authored-by: David Sherret <dsherret@gmail.com>
7 lines
116 B
JavaScript
7 lines
116 B
JavaScript
import order from "./order.js";
|
|
|
|
await new Promise((resolve) => {
|
|
setTimeout(resolve, 200);
|
|
});
|
|
|
|
order.push("a");
|