@bcts/dcbor 1.0.0-beta.0 → 1.0.0-beta.2
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.cjs +5 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.iife.js +5 -2
- package/dist/index.iife.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
package/dist/index.cjs
CHANGED
|
@@ -4348,11 +4348,11 @@ const lexicographicallyCompareBytes = (a, b) => {
|
|
|
4348
4348
|
if (a.length > b.length) return 1;
|
|
4349
4349
|
return 0;
|
|
4350
4350
|
};
|
|
4351
|
+
/*! https://github.com/rochars/byte-data
|
|
4352
|
+
Copyright (c) 2019 Rafael da Silva Rocha */
|
|
4351
4353
|
//#endregion
|
|
4352
4354
|
//#region src/exact.ts
|
|
4353
4355
|
var import_byte_data = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
4354
|
-
/*! https://github.com/rochars/byte-data
|
|
4355
|
-
Copyright (c) 2019 Rafael da Silva Rocha */
|
|
4356
4356
|
(function() {
|
|
4357
4357
|
if (!Object.defineProperty || !function() {
|
|
4358
4358
|
try {
|
|
@@ -5277,6 +5277,9 @@ const hexAnnotated = (cbor, tagsStore) => {
|
|
|
5277
5277
|
* Internal structure for dump items.
|
|
5278
5278
|
*/
|
|
5279
5279
|
var DumpItem = class {
|
|
5280
|
+
level;
|
|
5281
|
+
data;
|
|
5282
|
+
note;
|
|
5280
5283
|
constructor(level, data, note) {
|
|
5281
5284
|
this.level = level;
|
|
5282
5285
|
this.data = data;
|