Files
vue3-element-admin/src/utils/validate.ts
2022-02-18 00:05:43 +08:00

14 lines
236 B
TypeScript

/**
* Created by PanJiaChen on 16/11/18.
*/
/**
* @param {string} path
* @returns {Boolean}
*/
export function isExternal(path: string) {
const isExternal = /^(https?:|http?:|mailto:|tel:)/.test(path)
return isExternal
}