0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-08 07:16:56 -05:00
denoland-deno/tests/testdata/workers/close_race_worker.js

7 lines
123 B
JavaScript
Raw Normal View History

2025-01-01 04:12:39 +09:00
// Copyright 2018-2025 the Deno authors. MIT license.
setTimeout(() => {
self.postMessage("");
self.close();
}, 500);