Skip to main content
Module

x/task_runner_v2/example/counter.ts

Version 2 of deno-task-runner to fix issues
Latest
File
const name = Deno.args[1] || "";let i = 0;const interval = setInterval(() => { console.log(Deno.args[0], ++i); if (i >= 5) { clearInterval(interval); }}, 600);