You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
373 B
7 lines
373 B
module.exports = global.fetch // To enable: import fetch from 'cross-fetch'
|
|
module.exports.default = global.fetch // For TypeScript consumers without esModuleInterop.
|
|
module.exports.fetch = global.fetch // To enable: import {fetch} from 'cross-fetch'
|
|
module.exports.Headers = global.Headers
|
|
module.exports.Request = global.Request
|
|
module.exports.Response = global.Response
|