UNPKG

@minix-iot/ui

Version:

基于Vue的移动端轻量级UI组件库

6 lines (5 loc) 119 B
export class MathExtension { static Clamp(number, min, max) { return Math.min(Math.max(min, number), max); } }