pengwei
2025-03-12 18fcb8ad28f583e3e1b99b23e4f7d9e1833dcd83
项目代码/client/src/utils/validate.js
@@ -3,7 +3,7 @@
 * @param {string} path
 * @returns {Boolean}
 */
 export function isHttp(url) {
export function isHttp(url) {
  return url.indexOf('http://') !== -1 || url.indexOf('https://') !== -1
}
@@ -12,7 +12,7 @@
 * @param {string} path
 * @returns {Boolean}
 */
 export function isExternal(path) {
export function isExternal(path) {
  return /^(https?:|mailto:|tel:)/.test(path)
}