Skip to content

Commit

Permalink
fix onResume
Browse files Browse the repository at this point in the history
  • Loading branch information
fedeghe committed Mar 27, 2023
1 parent 329de94 commit 00f1c19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dist/index.js

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

2 changes: 1 addition & 1 deletion source/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const interval = (function (fn, interval, err) {
};
Interval.prototype.resume = function () {
this.paused = false;
this._onPause && this._onResume(this);
this._onResume && this._onResume(this);
return this;
};
Interval.prototype.runIfActive = function () {
Expand Down

0 comments on commit 00f1c19

Please sign in to comment.