1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-02-11 16:40:03 +00:00
2012-05-05 22:49:23 +01:00

16 lines
229 B
JavaScript
Executable File

//--
//-- Augmented methods for the JavaScript Number() object
//--
// Clamp a number to a range
Number.prototype.clamp = function(min,max)
{
var c = this;
if(c < min)
c = min;
if(c > max)
c = max;
return Number(c);
};