UNPKG

wux-weapp

Version:

一套组件化、可复用、易扩展的微信小程序 UI 组件库

11 lines (10 loc) 228 B
export const 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 }