Nodejs Utililty Methods Number Normalize

List of utility methods to do Number Normalize

Description

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

Method

norm(value, min, max)
Math.norm = function(value, min, max) {
  return (value - min) / (max - min);
};