Fix "TypeError: fetch is not a function" in Node.js environment (#1052)

This commit is contained in:
Makoto Sakaguchi 2020-03-03 10:20:28 -03:30 committed by GitHub
parent b6a6f52ad8
commit 66d83db51b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ import config from './config';
*/
function HKP(keyServerBaseUrl) {
this._baseUrl = keyServerBaseUrl || config.keyserver;
this._fetch = typeof global !== 'undefined' ? global.fetch : require('node-fetch');
this._fetch = typeof global.fetch === 'function' ? global.fetch : require('node-fetch');
}
/**