1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-03-11 14:09:55 +02:00
joplin/ReactNativeClient/lib/layout-utils.js
2018-03-09 17:49:35 +00:00

10 lines
223 B
JavaScript

const layoutUtils = {};
layoutUtils.size = function(prefered, min, max) {
if (prefered < min) return min;
if (typeof max !== "undefined" && prefered > max) return max;
return prefered;
};
module.exports = layoutUtils;