frp/web/frps/src/utils/validate.js
2020-12-04 01:08:40 +08:00

8 lines
137 B
JavaScript

/**
* @param {string} path
* @returns {Boolean}
*/
export function isExternal(path) {
return /^(https?:|mailto:|tel:)/.test(path)
}