UNPKG

@cainiaofe/cn-ui-m

Version:
11 lines (10 loc) 229 B
export function bound(position, min, max) { var ret = position; if (min !== undefined) { ret = Math.max(position, min); } if (max !== undefined) { ret = Math.min(ret, max); } return ret; }