UNPKG

@agility/cli

Version:

Agility CLI for working with your content. (Public Beta)

12 lines 400 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sleep = sleep; /** * Sleep for a specified number of milliseconds. * @param ms Number of milliseconds to sleep. * @returns Promise that resolves after the specified delay. */ function sleep(ms) { return new Promise(function (resolve) { return setTimeout(resolve, ms); }); } //# sourceMappingURL=sleep.js.map