UNPKG

@koopjs/featureserver

Version:

*An open source implementation of the GeoServices specification*

10 lines (8 loc) 217 B
function sendPrettyJson(res, payload) { res.set('Content-Type', 'application/json; charset=utf-8'); res.status(200); return res.send(JSON.stringify(payload, null, 2)); } module.exports = { sendPrettyJson, };