2.2.1 • Published 3 months ago

math-clamp v2.2.1

Weekly downloads
476
License
MIT
Repository
github
Last release
3 months ago

math-clamp

Clamp a number

Install

npm install math-clamp

Usage

import mathClamp from 'math-clamp';

mathClamp(1, {min: 2, max: 4});
//=> 2

mathClamp(1, {min: 2});
//=> 2

mathClamp(5, {max: 4});
//=> 4

API

mathClamp(number, {min?, max?})

Related