UNPKG

@yandex/ui

Version:

Yandex UI components

12 lines (11 loc) 304 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sleep = void 0; function sleep(milliseconds) { var date = Date.now(); var currentDate = null; do { currentDate = Date.now(); } while (currentDate - date < milliseconds); } exports.sleep = sleep;