import { ASSETS_CDN_URL } from"./constants.mjs";
/**
* @param uuid UUID of the assets hosted on Uploadcare
* @returns Full asset URL that can be used as a source for <img>, <video> and <a> tags.
*/exportfunctiongetCdnUrl(uuid) {
return"".concat(ASSETS_CDN_URL, "/").concat(uuid, "/");
}