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

This commit is contained in:
Yarmo Mackenbach 2020-11-17 10:03:25 +01:00 committed by GitHub
parent 08fc7b32ca
commit a4b56c944a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ import * as keyMod from './key';
* @constructor
*/
function WKD() {
this._fetch = typeof global !== 'undefined' ? global.fetch : require('node-fetch');
this._fetch = typeof global.fetch === 'function' ? global.fetch : require('node-fetch');
}
/**