mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-21 11:43:56 +00:00
6 lines
168 B
TypeScript
6 lines
168 B
TypeScript
export function strIsLink(str?: string) {
|
|
if (!str) return false;
|
|
if (/^((http|https)?:\/\/|www\.|\/)[^\s/$.?#].[^\s]*$/i.test(str)) return true;
|
|
return false;
|
|
}
|