diff options
| author | Yorkie Liu <yorkiefixer@gmail.com> | 2018-06-01 01:55:53 +0800 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-31 23:39:44 +0200 |
| commit | 38a2c042b61a448c1d4f7c0085d1eee907a0249b (patch) | |
| tree | fee2369c71c3093e89f0177e26a160bf87c19668 /timers.ts | |
| parent | 9cf5ecab022ff30e5b489e160371a6ed03a8b307 (diff) | |
fix nits
Diffstat (limited to 'timers.ts')
| -rw-r--r-- | timers.ts | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -78,7 +78,7 @@ export function setInterval( // tslint:disable-next-line:no-any ...args: any[] ): number { - return setTimer(cb, duration, true, args); + return setTimer(cb, repeat, true, args); } export function clearTimer(id: number) { @@ -87,4 +87,3 @@ export function clearTimer(id: number) { timerClearId: id }); } - |
