croner 8.0.1-dev.0 → 8.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "croner",
3
- "version": "8.0.1-dev.0",
3
+ "version": "8.0.1",
4
4
  "description": "Trigger functions and/or evaluate cron expressions in JavaScript. No dependencies. Most features. All environments.",
5
5
  "author": "Hexagon <github.com/hexagon>",
6
6
  "homepage": "https://hexagon.github.io/croner",
@@ -57,21 +57,21 @@ declare class Cron {
57
57
  */
58
58
  getPattern(): string | undefined;
59
59
  /**
60
- * Indicates wether or not the cron job is scheduled and running, e.g. awaiting next trigger
60
+ * Indicates whether or not the cron job is scheduled and running, e.g. awaiting next trigger
61
61
  * @public
62
62
  *
63
63
  * @returns {boolean} - Running or not
64
64
  */
65
65
  public isRunning(): boolean;
66
66
  /**
67
- * Indicates wether or not the cron job is permanently stopped
67
+ * Indicates whether or not the cron job is permanently stopped
68
68
  * @public
69
69
  *
70
70
  * @returns {boolean} - Running or not
71
71
  */
72
72
  public isStopped(): boolean;
73
73
  /**
74
- * Indicates wether or not the cron job is currently working
74
+ * Indicates whether or not the cron job is currently working
75
75
  * @public
76
76
  *
77
77
  * @returns {boolean} - Running or not
package/types/croner.d.ts CHANGED
@@ -161,21 +161,21 @@ export class Cron {
161
161
  */
162
162
  getPattern(): string | undefined;
163
163
  /**
164
- * Indicates wether or not the cron job is scheduled and running, e.g. awaiting next trigger
164
+ * Indicates whether or not the cron job is scheduled and running, e.g. awaiting next trigger
165
165
  * @public
166
166
  *
167
167
  * @returns {boolean} - Running or not
168
168
  */
169
169
  public isRunning(): boolean;
170
170
  /**
171
- * Indicates wether or not the cron job is permanently stopped
171
+ * Indicates whether or not the cron job is permanently stopped
172
172
  * @public
173
173
  *
174
174
  * @returns {boolean} - Running or not
175
175
  */
176
176
  public isStopped(): boolean;
177
177
  /**
178
- * Indicates wether or not the cron job is currently working
178
+ * Indicates whether or not the cron job is currently working
179
179
  * @public
180
180
  *
181
181
  * @returns {boolean} - Running or not