0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-02 04:38:21 -05:00
denoland-deno/tests/testdata/workers/close_race_worker.js
2025-01-09 15:19:16 -05:00

6 lines
123 B
JavaScript

// Copyright 2018-2025 the Deno authors. MIT license.
setTimeout(() => {
self.postMessage("");
self.close();
}, 500);