Drew Miller

Results 4 issues of Drew Miller

This was to fix these errors: ``` ERROR in [at-loader] ../../node_modules/@types/node/index.d.ts:6208:55 TS2304: Cannot find name 'Map'. module.exports = { ERROR in [at-loader] ../../node_modules/@types/node/index.d.ts:6215:55 TS2304: Cannot find name 'Set'. ERROR in...

I got this error from Webpack: Seemed to be resolved by switching to `ts-loader` and updating which version of Webpack the project is using to 4.12.0: `webpack.config.js:` ``` module.exports =...

We have the following logic in lib\auth\apikey.js ``` const aid = require('../aid'); class ApiKeyAuth { constructor(settings) { const params = settings.parameters(); const key = params.get('key'); const value = aid.evalString(params.get('value')); if...

bug