1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-19 18:59:42 +00:00
TiddlyWiki5/test/tiddlywiki.2.6.5/source/tiddlywiki/js/Numbers.js

16 lines
229 B
JavaScript
Raw Normal View History

2011-11-22 14:29:29 +00:00
//--
//-- 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);
};