Files
thumbsup-theme-flow/theme/helpers/aspect.js
2020-11-16 21:22:51 +01:00

7 lines
148 B
JavaScript

module.exports = (width, height) => {
if (width <0 || !width || height < 0 || !height) {
return null;
}
return width/height;
};