irc_web/.svn/pristine/2f/2f052e5d4d7aa4b8c6e1b9a2944...

9 lines
138 B
Plaintext

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