tvbox_config/open/node_modules/axios/lib/helpers/parseProtocol.js
liushiquan 36ab603d34 init
2024-06-01 22:41:46 +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] || '';
}