CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
combineURLs.js16 linesDownload Raw Back to helpers
1'use strict';2 3/**4 * Creates a new URL by combining the specified URLs5 *6 * @param {string} baseURL The base URL7 * @param {string} relativeURL The relative URL8 *9 * @returns {string} The combined URL10 */11export default function combineURLs(baseURL, relativeURL) {12  return relativeURL13    ? baseURL.replace(/\/?\/$/, '') + '/' + relativeURL.replace(/^\/+/, '')14    : baseURL;15}16