blob: 361d8ce2f349df23a99fc2b48cf21ff5b93d1b08 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
"use strict";
module.exports = function dechex(number) {
// discuss at: http://locutus.io/php/dechex/
// original by: Philippe Baumann
// bugfixed by: Onno Marsman (https://twitter.com/onnomarsman)
// improved by: http://stackoverflow.com/questions/57803/how-to-convert-decimal-to-hex-in-javascript
// input by: pilus
// example 1: dechex(10)
// returns 1: 'a'
// example 2: dechex(47)
// returns 2: '2f'
// example 3: dechex(-1415723993)
// returns 3: 'ab9dc427'
if (number < 0) {
number = 0xFFFFFFFF + number + 1;
}
return parseInt(number, 10).toString(16);
};
//# sourceMappingURL=dechex.js.map
|