Files
Kmake/test/fixtures/es-modules/esm-top-level-await.mjs
2026-05-26 23:36:42 -07:00

8 lines
214 B
JavaScript

import { setTimeout } from 'node:timers/promises';
// Waiting some arbitrary amount of time to make sure other tasks won't start
// executing in the mean time.
await setTimeout(9);
console.log(1);
console.log(2);