File "setMin.js"

Full Path: /home/cananyalcin/public_html/vendors/jqvmap/src/ColorScale/setMin.js
File size: 206 bytes
MIME-type: text/plain
Charset: utf-8

ColorScale.prototype.setMin = function (min) {
  this.clearMinValue = min;

  if (typeof this.normalize === 'function') {
    this.minValue = this.normalize(min);
  } else {
    this.minValue = min;
  }
};