med-notes/.pnpm-store/v10/files/83/1ce48e6798b2bdf0a42b52675925e6b3f327756d8ff661acf277e09b31e33668808f745819960843ad25ebaa6f4026049801c62121dd0690adf953dc3ac2dd
2025-06-26 04:42:51 +00:00

7 lines
151 B
Plaintext

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