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

11 lines
187 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
function isESMImportedImage(src) {
return typeof src === "object";
}
function isRemoteImage(src) {
return typeof src === "string";
}
export {
isESMImportedImage,
isRemoteImage
};