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

node-schedule

Package Overview
Dependencies
Maintainers
4
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-schedule - npm Package Compare versions

Comparing version 1.2.4 to 1.2.5

9

lib/schedule.js

@@ -496,9 +496,4 @@

var then = date.getTime();
if (then < now) {
setImmediate(job);
return null;
}
return lt.setTimeout(job, (then - now));
return lt.setTimeout(job, (then < now ? 0 : then - now));
}

@@ -505,0 +500,0 @@

{
"name": "node-schedule",
"version": "1.2.4",
"version": "1.2.5",
"description": "A cron-like and not-cron-like job scheduler for Node.",

@@ -5,0 +5,0 @@ "keywords": [

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