UNPKG

ripple-binary-codec

Version:
32 lines 930 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Hash128 = void 0; const hash_1 = require("./hash"); const utils_1 = require("@xrplf/isomorphic/utils"); /** * Hash with a width of 128 bits */ class Hash128 extends hash_1.Hash { constructor(bytes) { if (bytes && bytes.byteLength === 0) { bytes = Hash128.ZERO_128.bytes; } super(bytes !== null && bytes !== void 0 ? bytes : Hash128.ZERO_128.bytes); } /** * Get the hex representation of a hash-128 bytes, allowing unset * * @returns hex String of this.bytes */ toHex() { const hex = (0, utils_1.bytesToHex)(this.toBytes()); if (/^0+$/.exec(hex)) { return ''; } return hex; } } exports.Hash128 = Hash128; Hash128.width = 16; Hash128.ZERO_128 = new Hash128(new Uint8Array(Hash128.width)); //# sourceMappingURL=hash-128.js.map