-
Notifications
You must be signed in to change notification settings - Fork 37
/
fetch-node.js
36 lines (30 loc) · 1.07 KB
/
fetch-node.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
'use strict';
var fetch = require('node-fetch');
function wrapFetchForNode(fetch) {
// Support schemaless URIs on the server for parity with the browser.
// https://github.com/matthew-andrews/isomorphic-fetch/pull/10
return function (u, options) {
if (typeof u === 'string' && u.slice(0, 2) === '//') {
return fetch('https:' + u, options);
}
return fetch(u, options);
};
}
module.exports = function (context) {
// Support webpack module import weirdness.
var fetchFn = fetch.default ? fetch.default : fetch;
// This modifies the global `node-fetch` object, which isn't great, since
// different callers to `fetch-ponyfill` which pass a different Promise
// implementation would each expect to have their implementation used. But,
// given the way `node-fetch` is implemented, this is the only way to make
// it work at all.
if (context && context.Promise) {
fetchFn.Promise = context.Promise;
}
return {
fetch: wrapFetchForNode(fetchFn),
Headers: fetch.Headers,
Request: fetch.Request,
Response: fetch.Response
};
};