whychdw
2024-11-01 fe988832c5c02986a63dbf8276b7d362d25107ee
1
2
3
4
5
6
7
/**
 * @param {string} path
 * @returns {Boolean}
 */
export function isExternal(path) {
    return /^(https?:|mailto:|tel:)/.test(path);
}