Update task.js

This commit is contained in:
Namhyeon Go 2021-07-17 02:05:39 +09:00 committed by GitHub
parent 23a3e27058
commit cd9d2d2939
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,6 +39,9 @@ var Task = function(f, params) {
this.callCount++;
return this;
};
this.resetCount = function() {
this.callCount = 0;
};
};
var TaskQueue = function() {