@bcts/dcbor 1.0.0-beta.0 → 1.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -4347,11 +4347,11 @@ const lexicographicallyCompareBytes = (a, b) => {
4347
4347
  if (a.length > b.length) return 1;
4348
4348
  return 0;
4349
4349
  };
4350
+ /*! https://github.com/rochars/byte-data
4351
+ Copyright (c) 2019 Rafael da Silva Rocha */
4350
4352
  //#endregion
4351
4353
  //#region src/exact.ts
4352
4354
  var import_byte_data = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
4353
- /*! https://github.com/rochars/byte-data
4354
- Copyright (c) 2019 Rafael da Silva Rocha */
4355
4355
  (function() {
4356
4356
  if (!Object.defineProperty || !function() {
4357
4357
  try {
@@ -5276,6 +5276,9 @@ const hexAnnotated = (cbor, tagsStore) => {
5276
5276
  * Internal structure for dump items.
5277
5277
  */
5278
5278
  var DumpItem = class {
5279
+ level;
5280
+ data;
5281
+ note;
5279
5282
  constructor(level, data, note) {
5280
5283
  this.level = level;
5281
5284
  this.data = data;