PDPA Features: ✅ Cookie consent banner ✅ Consent logging API ✅ Admin dashboard ✅ Privacy Policy ✅ Terms & Conditions Technical: ✅ Astro 5.x + Tailwind v4 ✅ Docker on port 80 ✅ SQLite database ✅ 15 pages built Ready for Easypanel deployment.
17 lines
346 B
JavaScript
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
|
|
};
|