Comparing version 0.9.5 to 0.9.6
{ | ||
"name": "timexe", | ||
"version": "0.9.5", | ||
"version": "0.9.6", | ||
"description": "Yet another cron clone – but this one is better :o) - new improved syntax – milliseconds resolution – both for node JS and browser", | ||
@@ -5,0 +5,0 @@ "main": "timexe.js", |
@@ -26,3 +26,3 @@ # Timexe - Timer and scheduler | ||
```javascript | ||
timexe(”* * * 12”, function(){console.log(“hello - it's noon again”)}); | ||
timexe(”* * * 12”, function(){console.log(“hello - it is noon again”)}); | ||
``` | ||
@@ -97,3 +97,3 @@ | ||
##### timexe.remove(id) | ||
where id is the value returned from timexeadd | ||
where id is the value returned from timexe | ||
@@ -110,3 +110,3 @@ Returns a result object: | ||
##### timexe.get([id]) | ||
where the optional id is the value returned from timexeadd | ||
where the optional id is the value returned from timexe | ||
@@ -123,3 +123,3 @@ Returnes either a chronos timer object if id is given, or an array of all active timer objects. | ||
Maximum run time of a setTimeout call. Some javascripts engines cant handle more then 32 bit = 0x7FFFFFF. thats about 28 days. default is 86400000 = 1 day. | ||
When this time have elapsed, the timer event are reevaluated. | ||
When this time have elapsed, the time expression are reevaluated. | ||
@@ -126,0 +126,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
42286