mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-09-06 14:47:54 +08:00
8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
/**
|
|
* @param {string} path
|
|
* @returns {Boolean}
|
|
*/
|
|
export function isExternal(path: string) {
|
|
return /^(https?:|mailto:|tel:)/.test(path)
|
|
}
|