13 lines
237 B
JavaScript
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
|