UNPKG

@yandex/ui

Version:

Yandex UI components

8 lines (7 loc) 187 B
export function sleep(milliseconds) { var date = Date.now(); var currentDate = null; do { currentDate = Date.now(); } while (currentDate - date < milliseconds); }