crypto-utils-js
Version:
JavaScript library for encryption / decryption.
20 lines (19 loc) • 618 B
JavaScript
;
/*
* Hex
* Hexadecimal is the name of the numbering
* system that is base 16. This system,
* therefore, has numerals 0 - 15.
*
* That means that two-digit decimal numbers
* 10 - 15 must be represented by a single
* numeral to exist in this numbering system.
* "A"–"F" respectively.
*
* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
* 0 1 2 3 4 5 6 7 8 9 A B C D E F
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.hex = void 0;
var hex_1 = require("./hex");
Object.defineProperty(exports, "hex", { enumerable: true, get: function () { return hex_1.hex; } });