system-prompts-and-models-o.../unified-ai-platform/node_modules/axios/lib/helpers/parseProtocol.js
dopeuni444 ae726301f8 KI
KJ
2025-08-06 11:08:49 +04:00

7 lines
151 B
JavaScript

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