Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
displayableTasks.forEach(function(t) {
printf("%s %-"+width+"s # %s", this.name(), t.name(), t.comment());
}, this);
break;
t.prerequisites().forEach(function(pre) {
printf(" %s", pre);
});
}, this);
this.tasks().forEach(function(t) {
printf("%s %s", this.name(), t.name());
t.prerequisites().forEach(function(pre) {
printf(" %s", pre);
});
}, this);
}