FunctionProject/website/utils/redirect.js
2020-08-03 12:04:07 +02:00

11 lines
200 B
JavaScript

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