14 lines
236 B
TypeScript
14 lines
236 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
|
|
}
|
|
|