Mashape/mockbin

View on GitHub
lib/routes/har.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module.exports = function har(req, res, next) {
    res.view = "default";
    res.yamlInline = 6;

    res.body = req.har;

    next();
};