Spaces:
Paused
Paused
Object.defineProperty(exports, "__esModule", {value: true});// src/glossary.ts | ;|
var IS_PATCHED_MODULE = Symbol("isPatchedModule"); | |
// src/utils/isPropertyAccessible.ts | |
function isPropertyAccessible(obj, key) { | |
try { | |
obj[key]; | |
return true; | |
} catch (e) { | |
return false; | |
} | |
} | |
// src/utils/responseUtils.ts | |
var RESPONSE_STATUS_CODES_WITHOUT_BODY = /* @__PURE__ */ new Set([ | |
101, | |
103, | |
204, | |
205, | |
304 | |
]); | |
function isResponseWithoutBody(status) { | |
return RESPONSE_STATUS_CODES_WITHOUT_BODY.has(status); | |
} | |
function createServerErrorResponse(body) { | |
return new Response( | |
JSON.stringify( | |
body instanceof Error ? { | |
name: body.name, | |
message: body.message, | |
stack: body.stack | |
} : body | |
), | |
{ | |
status: 500, | |
statusText: "Unhandled Exception", | |
headers: { | |
"Content-Type": "application/json" | |
} | |
} | |
); | |
} | |
function isResponseError(response) { | |
return isPropertyAccessible(response, "type") && response.type === "error"; | |
} | |
exports.IS_PATCHED_MODULE = IS_PATCHED_MODULE; exports.isResponseWithoutBody = isResponseWithoutBody; exports.createServerErrorResponse = createServerErrorResponse; exports.isResponseError = isResponseError; | |
//# sourceMappingURL=chunk-2CRB3JAQ.js.map |