dockjss / web-content /node_modules /axios /lib /helpers /parseProtocol.js
franyer24's picture
Upload 1895 files
2e178e3 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] || '';
}