| Current Path : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/core-js/modules/ |
| Current File : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/core-js/modules/es7.math.clamp.js |
// 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));
}
});