Files
dealplustech/dealplustech-astro/node_modules/astro/dist/assets/utils/queryParams.js
2026-03-02 12:35:14 +07:00

17 lines
346 B
JavaScript

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
};