UNPKG

214 BJavaScriptView Raw
1// Check if a field is valid redirect URL
2const isUrl = function (pathOrUrl) {
3 return SCHEMES.some((scheme) => pathOrUrl.startsWith(scheme))
4}
5
6const SCHEMES = ['http://', 'https://']
7
8module.exports = { isUrl }