UNPKG

@prezly/theme-kit-core

Version:

Data layer and utility library for developing Prezly themes with JavaScript

8 lines 296 B
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. */ export function getCdnUrl(uuid) { return "".concat(ASSETS_CDN_URL, "/").concat(uuid, "/"); }