8 lines
147 B
TypeScript
Raw Normal View History

2023-11-09 09:26:37 +08:00
/**
* @param {string} path
* @returns {Boolean}
*/
export function isExternal(path: string) {
return /^(https?:|mailto:|tel:)/.test(path)
}