1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/ReactNativeClient/lib/layout-utils.js

9 lines
225 B
JavaScript
Raw Normal View History

2017-11-07 23:11:14 +02:00
const layoutUtils = {};
layoutUtils.size = function(preferred, min, max) {
if (preferred < min) return min;
if (typeof max !== 'undefined' && preferred > max) return max;
return preferred;
2017-11-07 23:11:14 +02:00
}
module.exports = layoutUtils;