https?:|mailto:|tel:

3,584 阅读1分钟

https?:|mailto:|tel:

匹配http或者 https

?默认是

检验是否是外部链接

export function isExternal(path) {
	return /^(https?:|mailto:|tel:)/.test(path)
}