astro-ghostcms/.pnpm-store/v3/files/f5/981b18398dbb7db1a96ec00ad6e...

11 lines
187 B
Plaintext

function isESMImportedImage(src) {
return typeof src === "object";
}
function isRemoteImage(src) {
return typeof src === "string";
}
export {
isESMImportedImage,
isRemoteImage
};