Files
website/node_modules/astro/dist/assets/utils/index.js
2024-05-06 17:15:30 -04:00

29 lines
664 B
JavaScript

import { emitESMImage } from "./emitAsset.js";
import { isESMImportedImage, isRemoteImage } from "./imageKind.js";
import { imageMetadata } from "./metadata.js";
import { getOrigQueryParams } from "./queryParams.js";
import {
isRemoteAllowed,
matchHostname,
matchPathname,
matchPattern,
matchPort,
matchProtocol
} from "./remotePattern.js";
import { hashTransform, propsToFilename } from "./transformToPath.js";
export {
emitESMImage,
getOrigQueryParams,
hashTransform,
imageMetadata,
isESMImportedImage,
isRemoteAllowed,
isRemoteImage,
matchHostname,
matchPathname,
matchPattern,
matchPort,
matchProtocol,
propsToFilename
};