1
0
mirror of https://github.com/oven-sh/setup-bun.git synced 2025-04-13 16:26:50 +08:00
2022-07-11 09:59:12 +02:00

10 lines
279 B
JavaScript

if (!globalThis.DOMException) {
const { MessageChannel } = require('worker_threads')
const port = new MessageChannel().port1
const ab = new ArrayBuffer()
try { port.postMessage(ab, [ab, ab]) }
catch (err) { globalThis.DOMException = err.constructor }
}
module.exports