mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 10:59:57 +00:00
07df513140
Testing against the output of cook.rb isn't satisfactory because of the bugs in it; instead we're now going to test against the tiddlywiki.com build products
16 lines
229 B
JavaScript
Executable File
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);
|
|
};
|
|
|