UNPKG

nodehotkey

Version:
15 lines 389 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /* * waits synchronously * @param milliseconds {number} time to wait * @returns {void} */ function wait(milliseconds) { var currTime = new Date().getTime(); while (new Date().getTime() < currTime + milliseconds) { // } } exports.wait = wait; //# sourceMappingURL=Wait.js.map