File "arrayToRgb.js"

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

ColorScale.arrayToRgb = function (ar) {
  var rgb = '#';
  var d;
  for (var i = 0; i < ar.length; i++) {
    d = ar[i].toString(16);
    rgb += d.length === 1 ? '0' + d : d;
  }
  return rgb;
};