An open API service indexing awesome lists of open source software.

https://github.com/19h47/19h47-clamp

🗜 Playing with the clamp
https://github.com/19h47/19h47-clamp

Last synced: about 2 months ago
JSON representation

🗜 Playing with the clamp

Awesome Lists containing this project

README

        

# @19h47/clamp

**@19h47/clamp** is a small module to clamp a number between an upper and lower bound.

```javascript
import clamp from '@19h47/clamp';

clamp(100, 0, 50); // 50
```

## Test

```bash
yarn test
```