13 lines
233 B
TypeScript
13 lines
233 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;
|
||
|
|
}
|