10 lines
216 B
JavaScript
10 lines
216 B
JavaScript
function redirect(ctx, path) {
|
|
if (ctx.res) {
|
|
ctx.res.writeHead(302, { Location: path });
|
|
ctx.res.end();
|
|
} else {
|
|
document.location.pathname = path;
|
|
}
|
|
}
|
|
|
|
module.exports = redirect; |