1aerostorm

Results 6 issues of 1aerostorm

Handler has: - `options.onError`, which handles exceptions (i.e. 500, but not 404/405) - `options.onNoMatch`, which handles both 404 (no route) and 405 (route presents, but wrong method), and doesn't provide...

This code: ```js assert.equal(res.length, 5); ``` could be rewrote to: ```js assert.lengthOf(res, 5); ``` And it is short and graceful. --- But this code: ```js assert.equal(res.length, res2.length); ``` could be...

I will not fill that issue, because Apache willn't fix plugin anyway I will just post a work-around: ```js var FileReader0 = FileReader ``` And it works with Cordova 11....

# 💩 Bug Report ## A summary of the bug `next-secure-headers` crashes if you try to use a relative URL in `reportURI`. Here you can see what `next-secure-headers` is using...

Type: 4. Bug

koa ^2.13.0 koa-passport latest passport-facebook latest Facebook can't authenticate because callbackURL becomes http://. But my request URL is https://. Then I providing absolute callbackURL with https:// scheme, it working. It...

I am trying to wrap each pager item into ` (from `next/link` or `react-router-dom`). My code is something like following: ```js { return {element} }} current={page} total={total} style={{ float: 'right',...