astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
16 lines (15 loc) • 386 B
JavaScript
function getAssetsPrefix(fileExtension, assetsPrefix) {
let prefix = "";
if (!assetsPrefix) {
prefix = "";
} else if (typeof assetsPrefix === "string") {
prefix = assetsPrefix;
} else {
const dotLessFileExtension = fileExtension.slice(1);
prefix = assetsPrefix[dotLessFileExtension] || assetsPrefix.fallback;
}
return prefix;
}
export {
getAssetsPrefix
};