mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 21:39:12 +08:00
11 lines
213 B
Text
11 lines
213 B
Text
const nodeFetch = require('../dist/index.cjs')
|
|
|
|
function fetch (input, options) {
|
|
return nodeFetch.fetch(input, options)
|
|
}
|
|
|
|
for (const key in nodeFetch) {
|
|
fetch[key] = nodeFetch[key]
|
|
}
|
|
|
|
module.exports = fetch
|