Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@thi.ng/binary

Package Overview
Dependencies
Maintainers
1
Versions
150
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/binary - npm Package Compare versions

Comparing version 3.4.11 to 3.4.12

8

CHANGELOG.md
# Change Log
- **Last updated**: 2024-02-10T08:59:56Z
- **Last updated**: 2024-02-19T15:50:26Z
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)

@@ -12,2 +12,8 @@

### [3.4.12](https://github.com/thi-ng/umbrella/tree/@thi.ng/binary@3.4.12) (2024-02-19)
#### 🩹 Bug fixes
- update zero check in floatToSortableInt() (fix [#450](https://github.com/thi-ng/umbrella/issues/450)) ([c2dc294](https://github.com/thi-ng/umbrella/commit/c2dc294))
## [3.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/binary@3.4.0) (2023-12-11)

@@ -14,0 +20,0 @@

2

float.js

@@ -23,3 +23,3 @@ const F64 = new Float64Array(1);

if (x === -0)
x = 0;
return 0;
const i = floatToIntBits(x);

@@ -26,0 +26,0 @@ return x < 0 ? ~i | 1 << 31 : i;

{
"name": "@thi.ng/binary",
"version": "3.4.11",
"version": "3.4.12",
"description": "100+ assorted binary / bitwise operations, conversions, utilities, lookup tables",

@@ -135,3 +135,3 @@ "type": "module",

},
"gitHead": "e5e7d5c6ed2eadee7a91d59cbd0c86ce880ab1c5\n"
"gitHead": "ea2ec2e4f14c572bbfac00c43953a6c4033da09e\n"
}

@@ -72,3 +72,3 @@ <!-- This file is generated - DO NOT EDIT! -->

Package sizes (brotli'd, pre-treeshake): ESM: 2.19 KB
Package sizes (brotli'd, pre-treeshake): ESM: 2.20 KB

@@ -75,0 +75,0 @@ ## Dependencies

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