mirror of
https://gitea.com/docker/setup-buildx-action.git
synced 2024-11-22 17:39:33 +01:00
9 lines
132 B
TypeScript
9 lines
132 B
TypeScript
|
export function isValidUrl(url: string): boolean {
|
||
|
try {
|
||
|
new URL(url);
|
||
|
} catch (e) {
|
||
|
return false;
|
||
|
}
|
||
|
return true;
|
||
|
}
|