Louis Mazin fc8aef3ed3 test
2026-07-19 17:19:41 +02:00

7 lines
151 B
JavaScript

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