Runs the provided callback with an `ng` string argument.
(cb: (arg: string) => void)
| 10 | |
| 11 | /** Runs the provided callback with an `ng` string argument. */ |
| 12 | function run(cb: (arg: string) => void) { |
| 13 | cb('ng'); |
| 14 | } |
| 15 | |
| 16 | describe('Debouncer', () => { |
| 17 | let debouncer: Debouncer; |