UNPKG

@statusfy/core

Version:
13 lines (12 loc) 261 B
module.exports = (res, lang) => ({ json(data) { res.setHeader("Content-Language", lang); res.json(data); }, notFound(message = "Not Found") { res.setHeader("Cache-Control", "no-cache"); res.status(404).json({ message }); } });