Commit 858f66e
doc: add missing parameter types
Both of the `clearTimeout()` and `clearInterval()` functions in the
`timers` lib accepts the ID of the `Timeout` object returned by the
functions in a number or string type, e.g.
```js
const t = setTimeout(console.log, 5000, 'test');
clearTimeout(t[Symbol.toPrimitive]());
```
PR-URL: #39013
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>1 parent c20e28e commit 858f66eCopy full SHA for 858f66e
File tree
Expand file treeCollapse file tree
1 file changed
+5
-2
lines changedOpen diff view settings
Filter options
- doc/api
Expand file treeCollapse file tree
1 file changed
+5
-2
lines changedOpen diff view settings
Collapse file
+5-2Lines changed: 5 additions & 2 deletions
- Display the source diff
- Display the rich diff
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
307 | 307 | |
308 | 308 | |
309 | 309 | |
310 | | - |
| 310 | + |
| 311 | + |
311 | 312 | |
312 | 313 | |
313 | 314 | |
| ||
316 | 317 | |
317 | 318 | |
318 | 319 | |
319 | | - |
| 320 | + |
| 321 | + |
320 | 322 | |
321 | 323 | |
322 | 324 | |
| ||
478 | 480 | |
479 | 481 | |
480 | 482 | |
| 483 | + |
0 commit comments