the variable apiKey at line 1017 of version 0.3.0 seems to be not defined.
I suspect the fix is simply to declare the variable somewhere before line 1017 using one of the following:
const apiKey = options.apiKey; // what I used
let apiKey = options.apiKey;
var apiKey = options.apiKey;
the variable apiKey at line 1017 of version 0.3.0 seems to be not defined.
I suspect the fix is simply to declare the variable somewhere before line 1017 using one of the following: const apiKey = options.apiKey; // what I used let apiKey = options.apiKey; var apiKey = options.apiKey;
Other than that the module works. Thx.