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

calc-stats

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

calc-stats - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

4

calc-stats.js

@@ -78,7 +78,7 @@ const { getOrCreateIterator } = require("iter-fun");

return (async () => {
for await (value of iter) step(value);
for await (let value of iter) step(value);
return finish();
})();
} else {
for (value of iter) step(value);
for (let value of iter) step(value);
return finish();

@@ -85,0 +85,0 @@ }

{
"name": "calc-stats",
"version": "0.3.0",
"version": "0.3.1",
"description": "Memory-Aware Statistical Calculations",

@@ -41,5 +41,5 @@ "main": "calc-stats.js",

"faster-median": "^0.2.0",
"iter-fun": "^0.1.0",
"iter-fun": "^0.1.2",
"quick-resolve": "^0.0.1"
}
}
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