Aleksandar Rodić

Results 2 issues of Aleksandar Rodić

implementing spread tap (.taps). ```js Promise.resolve([1, 2, 3]) .taps(function(a, b, c) { console.log(a, b, c) // => 1, 2, 3 }) .tap(function(abcArray) { console.log(abcArray) // => [1, 2, 3] })...

looks like there's an unnecessary charset check in `lib/types/urlencoded.js`? ```js // assert charset var charset = getCharset(req) || 'utf-8' if (charset !== 'utf-8') { debug('invalid charset') next(createError(415, 'unsupported charset "'...

question