FunctionProject/website/utils/redirect.js

10 lines
216 B
JavaScript
Raw Normal View History

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