croner 4.3.10 → 4.3.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/croner.cjs +2 -2
- package/package.json +1 -1
- package/src/croner.js +2 -2
- package/types/croner.d.ts +2 -2
package/dist/croner.cjs
CHANGED
|
@@ -1012,7 +1012,7 @@
|
|
|
1012
1012
|
};
|
|
1013
1013
|
|
|
1014
1014
|
/**
|
|
1015
|
-
* Pause
|
|
1015
|
+
* Pause execution
|
|
1016
1016
|
* @public
|
|
1017
1017
|
*
|
|
1018
1018
|
* @returns {boolean} - Wether pause was successful
|
|
@@ -1022,7 +1022,7 @@
|
|
|
1022
1022
|
};
|
|
1023
1023
|
|
|
1024
1024
|
/**
|
|
1025
|
-
*
|
|
1025
|
+
* Resume execution
|
|
1026
1026
|
* @public
|
|
1027
1027
|
*
|
|
1028
1028
|
* @returns {boolean} - Wether resume was successful
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "croner",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.11",
|
|
4
4
|
"description": "Trigger functions and/or evaluate cron expressions in JavaScript. No dependencies. Most features. All environmens.",
|
|
5
5
|
"author": "Hexagon <github.com/hexagon>",
|
|
6
6
|
"homepage": "https://hexagon.github.io/croner",
|
package/src/croner.js
CHANGED
|
@@ -190,7 +190,7 @@ Cron.prototype.stop = function () {
|
|
|
190
190
|
};
|
|
191
191
|
|
|
192
192
|
/**
|
|
193
|
-
* Pause
|
|
193
|
+
* Pause execution
|
|
194
194
|
* @public
|
|
195
195
|
*
|
|
196
196
|
* @returns {boolean} - Wether pause was successful
|
|
@@ -200,7 +200,7 @@ Cron.prototype.pause = function () {
|
|
|
200
200
|
};
|
|
201
201
|
|
|
202
202
|
/**
|
|
203
|
-
*
|
|
203
|
+
* Resume execution
|
|
204
204
|
* @public
|
|
205
205
|
*
|
|
206
206
|
* @returns {boolean} - Wether resume was successful
|
package/types/croner.d.ts
CHANGED
|
@@ -68,14 +68,14 @@ export class Cron {
|
|
|
68
68
|
*/
|
|
69
69
|
public stop(): void;
|
|
70
70
|
/**
|
|
71
|
-
* Pause
|
|
71
|
+
* Pause execution
|
|
72
72
|
* @public
|
|
73
73
|
*
|
|
74
74
|
* @returns {boolean} - Wether pause was successful
|
|
75
75
|
*/
|
|
76
76
|
public pause(): boolean;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* Resume execution
|
|
79
79
|
* @public
|
|
80
80
|
*
|
|
81
81
|
* @returns {boolean} - Wether resume was successful
|