Skip to main content
Module

x/rambda/index.d.ts>clamp

Faster and smaller alternative to Ramda
Go to Latest
function clamp
import { clamp } from "https://deno.land/x/rambda@v7.0.1/index.d.ts";

Restrict a number input to be within min and max limits.

If input is bigger than max, then the result is max.

If input is smaller than min, then the result is min.

Parameters

min: number
max: number
input: number

Returns

number

Parameters

min: number
max: number

Returns

(input: number) => number