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

@parca/utilities

Package Overview
Dependencies
Maintainers
4
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@parca/utilities - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

4

CHANGELOG.md

@@ -6,2 +6,6 @@ # Change Log

## 0.0.9 (2023-06-21)
**Note:** Version bump only for package @parca/utilities
## 0.0.8 (2023-06-15)

@@ -8,0 +12,0 @@

2

dist/bigint.js

@@ -17,3 +17,3 @@ // Copyright 2022 The Parca Authors

export const divide = (a, b) => {
return Number((a * 10000n) / b) / 10000;
return Number((a * 1000000n) / b) / 1000000;
};

@@ -20,0 +20,0 @@ /**

{
"name": "@parca/utilities",
"version": "0.0.8",
"version": "0.0.9",
"description": "A set of reusable functions for Parca",

@@ -24,3 +24,3 @@ "main": "dist/index.js",

},
"gitHead": "e1dc36ad29a6efe06f45460bb721325df9416a6b"
"gitHead": "63d0c4ac11e3a9a6a859647ef5828c13a50b0132"
}

@@ -18,3 +18,3 @@ // Copyright 2022 The Parca Authors

export const divide = (a: bigint, b: bigint): number => {
return Number((a * 10000n) / b) / 10000;
return Number((a * 1000000n) / b) / 1000000;
};

@@ -21,0 +21,0 @@

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