Browse Source

fix(is.ts): fix#2028 修复isUrl正则可以匹配到/www问题 (#2033)

Co-authored-by: 苗大 <v.caoshm@yoozoo.com>
Wit〆苗大 2 years ago
parent
commit
91e13c4287
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/utils/is.ts

+ 1 - 1
src/utils/is.ts

@@ -94,6 +94,6 @@ export const isClient = !isServer;
 
 export function isUrl(path: string): boolean {
   const reg =
-    /(((^https?:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+(?::\d+)?|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w-_]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[\w]*))?)$/;
+    /^(((^https?:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+(?::\d+)?|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w-_]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[\w]*))?)$/;
   return reg.test(path);
 }