0a6aa4c535cd2dd924122b9ffce98880b6db8f9f
[sdnc/oam.git] /
1 // Generated by CoffeeScript 1.7.1
2 module.exports = function(number) {
3   var result;
4   result = number.toString(16);
5   while (result.length % 2) {
6     result = "0" + result;
7   }
8   return result;
9 };