Files
Shifted/node_modules/msw/lib/core/passthrough.mjs
2026-02-10 01:14:19 +00:00

13 lines
237 B
JavaScript

function passthrough() {
return new Response(null, {
status: 302,
statusText: "Passthrough",
headers: {
"x-msw-intention": "passthrough"
}
});
}
export {
passthrough
};
//# sourceMappingURL=passthrough.mjs.map