File "vectorToNum.js"

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

ColorScale.prototype.vectorToNum = function (vector) {
  var num = 0;
  for (var i = 0; i < vector.length; i++) {
    num += Math.round(vector[i]) * Math.pow(256, vector.length - i - 1);
  }
  return num;
};