la vie est belle 620637fd28 first commit
2023-11-01 10:27:59 +08:00

7 lines
151 B
JavaScript

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