mirror of
https://github.com/zhigang1992/now-deployment.git
synced 2026-06-14 09:49:12 +08:00
7 lines
140 B
TypeScript
7 lines
140 B
TypeScript
/**
|
|
* A naive isURL
|
|
*/
|
|
export default function isURL(str: any): boolean {
|
|
return typeof str === 'string' && /^https?:\/\//.test(str);
|
|
}
|