astro-ghostcms/.pnpm-store/v3/files/2a/f1043751872c82a640f06a2bab3...

17 lines
346 B
Plaintext

function getOrigQueryParams(params) {
const width = params.get("origWidth");
const height = params.get("origHeight");
const format = params.get("origFormat");
if (!width || !height || !format) {
return void 0;
}
return {
width: parseInt(width),
height: parseInt(height),
format
};
}
export {
getOrigQueryParams
};