Krishna{"Rajput"}
Deploy AURORA AI Fight Detection System to HuggingFace Spaces
c04be7a
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]) || '';
}