aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/crc/lib/hex.js
blob: 0a6aa4c535cd2dd924122b9ffce98880b6db8f9f (plain)
1
2
3
4
5
6
7
8
9
// Generated by CoffeeScript 1.7.1
module.exports = function(number) {
  var result;
  result = number.toString(16);
  while (result.length % 2) {
    result = "0" + result;
  }
  return result;
};