@helios-lang/codec-utils
Advanced tools
Comparing version 0.3.3 to 0.3.4
{ | ||
"name": "@helios-lang/codec-utils", | ||
"version": "0.3.3", | ||
"version": "0.3.4", | ||
"description": "Primitive manipulation functions commonly used in encoding and decoding algorithms", | ||
@@ -31,3 +31,4 @@ "main": "src/index.js", | ||
"prettify": "prettier . --write", | ||
"test": "pnpm run test:pretty && pnpm run lint && pnpm run test:types && pnpm run test:suite", | ||
"test": "pnpm run test:pretty && pnpm run lint && pnpm run test:types && pnpm run test:suite && pnpm run test:integ", | ||
"test:integ": "pnpm --prefix ./test/all-pure run test ", | ||
"test:pretty": "prettier . --check", | ||
@@ -34,0 +35,0 @@ "test:suite": "node --test --experimental-test-coverage", |
@@ -290,3 +290,3 @@ import { makeBitReader, makeBitWriter, padBits } from "../bits/index.js" | ||
*/ | ||
const DEFAULT_BASE32_CODEC = makeBase32() | ||
const DEFAULT_BASE32_CODEC = /* @__PURE__ */ makeBase32() | ||
@@ -293,0 +293,0 @@ /** |
@@ -294,3 +294,3 @@ import { makeBitReader, makeBitWriter, padBits } from "../bits/index.js" | ||
*/ | ||
const DEFAULT_BASE64_CODEC = makeBase64() | ||
const DEFAULT_BASE64_CODEC = /* @__PURE__ */ makeBase64() | ||
@@ -297,0 +297,0 @@ /** |
@@ -217,2 +217,2 @@ /** | ||
*/ | ||
export const UINT64_ZERO = new UInt64Impl(0, 0) | ||
export const UINT64_ZERO = (() => /* @__PURE__ */ new UInt64Impl(0, 0))() |
Sorry, the diff of this file is not supported yet
108084
102
2713