您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112
  1. const bound = (position, min, max) => {
  2. let ret = position
  3. if (min !== undefined) {
  4. ret = Math.max(position, min)
  5. }
  6. if (max !== undefined) {
  7. ret = Math.min(ret, max)
  8. }
  9. return ret
  10. }
  11. export default bound