@thi.ng/binary
Advanced tools
Comparing version 3.4.11 to 3.4.12
# 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 @@ |
@@ -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 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
54104