Aktueller Stand
This commit is contained in:
15
backend/node_modules/hono/dist/middleware/pretty-json/index.js
generated
vendored
Normal file
15
backend/node_modules/hono/dist/middleware/pretty-json/index.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
// src/middleware/pretty-json/index.ts
|
||||
var prettyJSON = (options) => {
|
||||
const targetQuery = options?.query ?? "pretty";
|
||||
return async function prettyJSON2(c, next) {
|
||||
const pretty = options?.force || c.req.query(targetQuery) || c.req.query(targetQuery) === "";
|
||||
await next();
|
||||
if (pretty && c.res.headers.get("Content-Type")?.startsWith("application/json")) {
|
||||
const obj = await c.res.json();
|
||||
c.res = new Response(JSON.stringify(obj, null, options?.space ?? 2), c.res);
|
||||
}
|
||||
};
|
||||
};
|
||||
export {
|
||||
prettyJSON
|
||||
};
|
||||
Reference in New Issue
Block a user