mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
17 lines
271 B
JavaScript
Executable File
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);
|
|
};
|
|
|