Update task.js

This commit is contained in:
Namhyeon Go 2021-06-23 14:37:04 +09:00 committed by GitHub
parent d00ece90c1
commit 4ece56e47e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,7 @@ var Task = function(f, params)
this.f = f;
this.params = params;
this.nextTask = null;
this.when = 0;
this.setNextTask = function(task) {
this.nextTask = task;
}