1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-01 22:12:46 +00:00
TiddlyWiki5/tw2/source/tiddlywiki/deprecated/Numbers.js
Jeremy Ruston a1c8ac624f Added first pass at support for building TiddlyWiki 2.6.x with TW5
There are still some whitespace and attribute ordering issues, but the
result runs correctly.
2012-05-29 22:02:38 +01:00

17 lines
271 B
JavaScript
Executable File

//--
//-- Deprecated Number functions
//--
// @Deprecated: no direct replacement, since not used in core code
// 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);
};