UNPKG

@adaptabletools/adaptable-cjs

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

11 lines (10 loc) 307 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = clamp; /** * Clamps number within the inclusive lower and upper bounds. * Drop-in replacement for lodash/clamp. */ function clamp(number, lower, upper) { return Math.min(Math.max(number, lower), upper); }