| 1 2 3 4 5 6 7 8 | 1× 1× 1× 1× 1× | const {curry} = require("ramda");
module.exports = curry(function contentType(app, defaultType, conn) {
return conn.run(app).then(function () {
const headers = conn.response.headers;
headers["Content-Type"] = headers["Content-Type"] || defaultType || "text/html";
});
});
|