Nodejs Utililty Methods Number Clamp

List of utility methods to do Number Clamp

Description

The list of methods to do Number Clamp are organized into topic(s).

Method

clamp(min,max)
Number.prototype.clamp = function(min,max)
  var c = this;
  if(c < min)
    c = min;
  if(c > max)
    c = max;
  return c;
};
...