Files
TiddlyWiki5/test/data/tiddlywiki/js/Numbers.js
T
2011-11-22 14:29:29 +00: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);
};