UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

9 lines (7 loc) 221 B
// https://rwaldron.github.io/proposal-math-extensions/ var $export = require('./_export'); $export($export.S, 'Math', { clamp: function clamp(x, lower, upper) { return Math.min(upper, Math.max(lower, x)); } });