2
0
Fork 0
mirror of https://code.forgejo.org/docker/setup-buildx-action.git synced 2025-09-17 18:26:56 +00:00
setup-buildx-action/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;
}