annator / scripts /node_modules /axios /lib /helpers /parseProtocol.js
techprotrade's picture
Add scripts directory (part 5)
9363588 verified
Raw
History Blame Contribute Delete
153 Bytes
'use strict';
export default function parseProtocol(url) {
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
return (match && match[1]) || '';
}