MyToolKit / ui /node_modules /axios /lib /helpers /parseProtocol.js
Aero-Ex's picture
Add files using upload-large-folder tool
00150c8 verified
Raw
History Blame Contribute Delete
151 Bytes
'use strict';
export default function parseProtocol(url) {
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
return match && match[1] || '';
}