# OpenWebProject Core/Math

## clamp
```javascript
clamp(6, 5, 7) -> 6
clamp(2, 5, 7) -> 5
clamp(10, 5, 7) -> 7
```