add node modules

This commit is contained in:
2025-11-24 21:31:58 +01:00
parent 3e17a6df59
commit 61aba497a8
13 changed files with 29573 additions and 131 deletions

11
node_modules/cross-fetch/dist/node-polyfill.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
const fetchNode = require('./node-ponyfill')
if (!global.fetch) {
const fetch = fetchNode.fetch.bind({})
global.fetch = fetch
global.fetch.polyfill = true
global.Response = fetchNode.Response
global.Headers = fetchNode.Headers
global.Request = fetchNode.Request
}