@parca/utilities
Advanced tools
Comparing version 0.0.8 to 0.0.9
@@ -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 @@ |
@@ -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 @@ |
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
64104