UX-agent / frontend /node_modules /axios /lib /helpers /parseProtocol.js
AUXteam's picture
Revert index.html change and retry build
2eb1c4f verified
'use strict';
export default function parseProtocol(url) {
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
return match && match[1] || '';
}