Comparing version 1.2.2 to 1.2.3
@@ -538,3 +538,2 @@ /*! | ||
function writeBigU256(dst, num, off) { | ||
// eslint-disable-next-line valid-typeof | ||
enforce(typeof num === 'bigint', 'num', 'bigint'); | ||
@@ -554,3 +553,2 @@ | ||
function writeBigU128(dst, num, off) { | ||
// eslint-disable-next-line valid-typeof | ||
enforce(typeof num === 'bigint', 'num', 'bigint'); | ||
@@ -570,3 +568,2 @@ | ||
function writeBigU64(dst, num, off) { | ||
// eslint-disable-next-line valid-typeof | ||
enforce(typeof num === 'bigint', 'num', 'bigint'); | ||
@@ -586,3 +583,2 @@ | ||
function writeBigU56(dst, num, off) { | ||
// eslint-disable-next-line valid-typeof | ||
enforce(typeof num === 'bigint', 'num', 'bigint'); | ||
@@ -717,3 +713,2 @@ | ||
function writeBigU256BE(dst, num, off) { | ||
// eslint-disable-next-line valid-typeof | ||
enforce(typeof num === 'bigint', 'num', 'bigint'); | ||
@@ -733,3 +728,2 @@ | ||
function writeBigU128BE(dst, num, off) { | ||
// eslint-disable-next-line valid-typeof | ||
enforce(typeof num === 'bigint', 'num', 'bigint'); | ||
@@ -749,3 +743,2 @@ | ||
function writeBigU64BE(dst, num, off) { | ||
// eslint-disable-next-line valid-typeof | ||
enforce(typeof num === 'bigint', 'num', 'bigint'); | ||
@@ -765,3 +758,2 @@ | ||
function writeBigU56BE(dst, num, off) { | ||
// eslint-disable-next-line valid-typeof | ||
enforce(typeof num === 'bigint', 'num', 'bigint'); | ||
@@ -768,0 +760,0 @@ |
@@ -26,3 +26,3 @@ /*! | ||
/** @type {Buffer} */ | ||
data; | ||
// data; // TODO: Figure out what to do here. | ||
@@ -29,0 +29,0 @@ /** |
{ | ||
"name": "bufio", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"description": "Buffer and serialization utilities for javascript", | ||
@@ -23,7 +23,7 @@ "keywords": [ | ||
"devDependencies": { | ||
"bmocha": "^2.1.0", | ||
"bmocha": "^2.2.1", | ||
"bts-type-deps": "^0.0.3" | ||
}, | ||
"engines": { | ||
"node": ">=14.0.0" | ||
"node": ">=8.0.0" | ||
}, | ||
@@ -30,0 +30,0 @@ "browser": { |
116743
15
4504