UNPKG

made-diagnostics

Version:
13 lines 553 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.delay = void 0; /** * Creates a Promise that completes after a specified number of milliseconds. * @param {number} milliseconds - The number of milliseconds to wait before completing the returned Promise. * @returns {Promise} A new Promise that is completed after the specified number of milliseconds. */ function delay(milliseconds) { return new Promise(resolve => setTimeout(resolve, milliseconds)); } exports.delay = delay; //# sourceMappingURL=index.js.map