semblance-dev/node_modules/axios/lib/helpers/parseProtocol.js
2025-12-19 19:26:16 +00:00

6 lines
151 B
JavaScript
Executable file

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