JavaProjectRepo/framework/frontend/src/utils/validate.ts

13 lines
233 B
TypeScript
Raw Normal View History

/**
* 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;
}