antd-mobile
Version:
<img src="https://gw.alipayobjects.com/mdn/rms_ee68a8/afts/img/A*hjjDS5Yy-ooAAAAAAAAAAAAAARQnAQ" alt="logo" width="100%" />
20 lines (15 loc) • 308 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.bound = bound;
function bound(position, min, max) {
let ret = position;
if (min !== undefined) {
ret = Math.max(position, min);
}
if (max !== undefined) {
ret = Math.min(ret, max);
}
return ret;
}
;