| Path : /proc/thread-self/root/var/www/html/smartcirqls.com/vendors/jqvmap/src/ColorScale/ |
| Current File : //proc/thread-self/root/var/www/html/smartcirqls.com/vendors/jqvmap/src/ColorScale/arrayToRgb.js |
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;
};