image-handler.js 214 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 const MIN_SCALE = 3 / 4; export function getArticleImageSize({width, height}) { if (width / height < MIN_SCALE) { return { width, height: width / MIN_SCALE }; } return {width, height}; }