Files
med-notes/.pnpm-store/v10/files/c6/24137ff7f57057d7e3c8cc5a1a243e29a517ad746994deaf3dfd895fe3240bf2b7d845dc6bb9d381beee2dd2cd7a754064e7ef02b6baad72bd508dbd2b34a2
2025-05-09 05:30:08 +02:00

14 lines
275 B
Plaintext

function notFound(options = {}) {
options.isNotFound = true;
if (options.throw) throw options;
return options;
}
function isNotFound(obj) {
return !!(obj == null ? void 0 : obj.isNotFound);
}
export {
isNotFound,
notFound
};
//# sourceMappingURL=not-found.js.map