CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
parseProtocol.js7 linesDownload Raw Back to helpers
1'use strict';2 3export default function parseProtocol(url) {4  const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);5  return match && match[1] || '';6}7