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

periodically

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

periodically - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

.prettierrc

22

index.js

@@ -6,4 +6,4 @@ /**

*/
export default (func, frequencyInMs) => {
let running = false;
module.exports = (func, frequencyInMs) => {
let running = false

@@ -17,7 +17,7 @@ /**

if (running) {
setTimeout(tick, frequencyInMs);
setTimeout(tick, frequencyInMs)
}
return null;
});
return null
})
}

@@ -30,8 +30,8 @@

if (!running) {
running = true;
running = true
tick();
tick()
}
return null;
return null
}

@@ -43,6 +43,6 @@

function stop() {
running = false;
running = false
}
return { start, stop };
};
return { start, stop }
}
{
"name": "periodically",
"version": "1.0.0",
"version": "1.0.1",
"description": "A wrapper for doing things periodically",

@@ -5,0 +5,0 @@ "main": "index.js",

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