mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
10 lines
227 B
JavaScript
10 lines
227 B
JavaScript
const layoutUtils = {};
|
|
|
|
layoutUtils.size = function(preferred, min, max) {
|
|
if (preferred < min) return min;
|
|
if (typeof max !== 'undefined' && preferred > max) return max;
|
|
return preferred;
|
|
};
|
|
|
|
module.exports = layoutUtils;
|