New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@helios-lang/codec-utils

Package Overview
Dependencies
Maintainers
0
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@helios-lang/codec-utils - npm Package Compare versions

Comparing version 0.3.3 to 0.3.4

test/all-pure/dist/esbuild/index.mjs

5

package.json
{
"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",

2

src/bytes/base32.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc