Files
anbraten cbe1b42f6e
tinyedge/deploy Deployed by TinyEdge
🐛 add env to useDb and apply prettier
2026-08-07 13:28:26 +02:00

11 lines
239 B
TypeScript

export function isValidPaymentLink(value: string): boolean {
if (!value.trim()) return false;
try {
const url = new URL(value);
return url.protocol === 'https:' || url.protocol === 'http:';
} catch {
return false;
}
}