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