WTF not
All checks were successful
Push to main / Reset-Version-Tag (push) Successful in 4s

This commit is contained in:
Bryce Thorup
2024-09-03 10:27:06 -06:00
parent 42ba615a9d
commit 0cc479fc6d
127 changed files with 66554 additions and 0 deletions

16
node_modules/node-domexception/index.js generated vendored Normal file
View File

@@ -0,0 +1,16 @@
/*! node-domexception. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
if (!globalThis.DOMException) {
try {
const { MessageChannel } = require('worker_threads'),
port = new MessageChannel().port1,
ab = new ArrayBuffer()
port.postMessage(ab, [ab, ab])
} catch (err) {
err.constructor.name === 'DOMException' && (
globalThis.DOMException = err.constructor
)
}
}
module.exports = globalThis.DOMException