@erebos/hex
Advanced tools
Comparing version 0.10.0 to 0.11.0
@@ -18,3 +18,5 @@ "use strict"; | ||
(function (HexValue) {})(HexValue || (HexValue = {})); | ||
(function (HexValue) { | ||
HexValue["_"] = ""; | ||
})(HexValue || (HexValue = {})); | ||
@@ -21,0 +23,0 @@ function isHexValue(value) { |
@@ -5,3 +5,5 @@ import _createClass from "@babel/runtime/helpers/esm/createClass"; | ||
(function (HexValue) {})(HexValue || (HexValue = {})); | ||
(function (HexValue) { | ||
HexValue["_"] = ""; | ||
})(HexValue || (HexValue = {})); | ||
@@ -8,0 +10,0 @@ export function isHexValue(value) { |
{ | ||
"name": "@erebos/hex", | ||
"version": "0.10.0", | ||
"version": "0.11.0", | ||
"description": "Hex conversion utilities", | ||
@@ -27,4 +27,4 @@ "repository": "git@github.com:MainframeHQ/erebos.git", | ||
"dependencies": { | ||
"@babel/runtime": "^7.6.2" | ||
"@babel/runtime": "^7.7.4" | ||
} | ||
} |
/// <reference types="node" /> | ||
declare enum HexValue { | ||
_ = "" | ||
} | ||
@@ -29,3 +30,3 @@ export declare type hexValue = HexValue & string; | ||
constructor(inputValue: hexInput | Hex); | ||
readonly value: hexValue; | ||
get value(): hexValue; | ||
equals(other: hexInput | Hex): boolean; | ||
@@ -32,0 +33,0 @@ toBuffer(): Buffer; |
9295
277
Updated@babel/runtime@^7.7.4