Files
skills-here-run-place/node_modules/astro/dist/assets/utils/queryParams.js
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01: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
};