UNPKG

@esutils/delay

Version:

A minimal delay/sleep library that implemented in `typescript`

8 lines (6 loc) 164 B
import { delay } from '@esutils/delay'; describe('delay in javascript', () => { it('function type', () => { expect(typeof delay).toBe('function'); }); });