Skip to content

Commit

Permalink
Fix #254
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Aug 2, 2024
1 parent 33a1d88 commit e41ab97
Show file tree
Hide file tree
Showing 12 changed files with 105 additions and 105 deletions.
2 changes: 1 addition & 1 deletion dist/croner.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/croner.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/croner.min.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/croner.min.cjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/croner.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/croner.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/croner.umd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/croner.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/croner.umd.min.js.map

Large diffs are not rendered by default.

188 changes: 94 additions & 94 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "croner",
"version": "8.1.0",
"version": "8.1.1-dev.0",
"description": "Trigger functions and/or evaluate cron expressions in JavaScript. No dependencies. Most features. All environments.",
"author": "Hexagon <github.com/hexagon>",
"homepage": "https://croner.56k.guru",
Expand Down
2 changes: 1 addition & 1 deletion src/pattern.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { CronDate } from "./date.js";
*/
export const LAST_OCCURRENCE = 0b100000;
export const ANY_OCCURRENCE = 0b00001 | 0b00010 | 0b00100 | 0b01000 | 0b10000 | LAST_OCCURRENCE;
export const OCCURRENCE_BITMASKS = [0b00001, 0b00010, 0b00100, 0b010000, 0b10000];
export const OCCURRENCE_BITMASKS = [0b00001, 0b00010, 0b00100, 0b01000, 0b10000];

/**
* Create a CronPattern instance from pattern string ('* * * * * *')
Expand Down

0 comments on commit e41ab97

Please sign in to comment.