astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
17 lines (16 loc) • 360 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: Number.parseInt(width),
height: Number.parseInt(height),
format
};
}
export {
getOrigQueryParams
};