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