2
0
mirror of https://gitea.com/docker/setup-buildx-action.git synced 2025-02-24 04:30:39 +07:00
docker-setup-buildx/src/util.ts

9 lines
132 B
TypeScript
Raw Normal View History

export function isValidUrl(url: string): boolean {
try {
new URL(url);
} catch (e) {
return false;
}
return true;
}