Before oak@13, we were able to add a `limit` to body: ```js ctx.request.body({ type: 'json', limit: maxHttpBodyBytes }).value ``` which was throwing `BadRequest` whenever the request body was exceeding that limit. Is there a way to do this using the new body API?
Before oak@13, we were able to add a
limitto body:which was throwing
BadRequestwhenever the request body was exceeding that limit.Is there a way to do this using the new body API?