Just like the code in `koa-bodyparser` https://github.com/koajs/bodyparser/blob/master/index.js#L72 ``` return async function bodyParser(ctx, next) { if (ctx.request.body !== undefined) return await next(); if (ctx.disableBodyParser) return await next(); } ``` Without checking it, `koa-body` will make requests be `pending` there if the raw body has already been parsed by other middleware because the `Promise` cannot be resolved in https://github.com/dlau/koa-body/blob/master/index.js#L84
Just like the code in
koa-bodyparserhttps://github.com/koajs/bodyparser/blob/master/index.js#L72Without checking it,
koa-bodywill make requests bependingthere if the raw body has already been parsed by other middleware because thePromisecannot be resolved in https://github.com/dlau/koa-body/blob/master/index.js#L84