TenantAtlas/apps/platform/.pnpm-store/v10/files/f4/a8f2be9a3a7ba0548637c56b0df500f342a43a68b33788f5444f91f59d7c6a9d826374b2cf9f6e0d279a07189bf4440c499f3cb29baf70792442bdecece43e
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

7 lines
153 B
Plaintext

'use strict';
export default function parseProtocol(url) {
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
return (match && match[1]) || '';
}