form2json icon indicating copy to clipboard operation
form2json copied to clipboard

ReferenceError: body is not defined

Open mjadobson opened this issue 13 years ago • 0 comments

Current version of the module's middleware is broken.

Due to:

exports.middleware = function form2json(req, res, next) {
  if (!req.json) {
    var flat = req.body || req.query
    req.json = flat ? exports.transform(body) : {}
  }
  next()
}

referencing a body variable that doesn't exist.

mjadobson avatar Jul 07 '12 19:07 mjadobson