Files
vue3-element-admin/src/utils/validate.ts
郝先瑞 11f02c0254 style: 全局代码格式化
Former-commit-id: bb50c8419b8fcdeb48c93fce9f399d901e8f5a52
2022-05-04 15:02:33 +08:00

13 lines
231 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;
}