This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
FunctionProject/website/utils/redirect.js

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;