astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
15 lines (14 loc) • 373 B
JavaScript
function isESMImportedImage(src) {
return typeof src === "object" || typeof src === "function" && "src" in src;
}
function isRemoteImage(src) {
return typeof src === "string";
}
async function resolveSrc(src) {
return typeof src === "object" && "then" in src ? (await src).default ?? await src : src;
}
export {
isESMImportedImage,
isRemoteImage,
resolveSrc
};