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

easy-loop

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

easy-loop - npm Package Compare versions

Comparing version 1.4.7 to 1.4.8

9

lib/easy-while.js
function easyWhile(condition, func, last){
var count = 0;
if(func === undefined && last === undefined)

@@ -12,3 +13,3 @@ {

var run = function(){
if(condition()) func(next);
if(condition()) func(next, count);
else

@@ -24,3 +25,7 @@ {

}
else run();
else
{
count++;
run();
}
};

@@ -27,0 +32,0 @@ run();

{
"name": "easy-loop",
"version": "1.4.7",
"version": "1.4.8",
"description": "Easy sync loop processing for Node.js",

@@ -5,0 +5,0 @@ "main": "lib/easy-loop",

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