try node-fetch instead

This commit is contained in:
bitkarrot
2022-03-20 22:52:30 -07:00
parent d7bad86416
commit b8674d73ad
92 changed files with 6669 additions and 2 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