10 lines
198 B
JavaScript
10 lines
198 B
JavaScript
|
// 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;
|
||
|
};
|