@adaptabletools/adaptable-cjs
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
13 lines (12 loc) • 334 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.waitForTimeout = void 0;
// waits for the given ms milliseconds
function waitForTimeout(ms) {
return new Promise((resolve) => {
setTimeout(() => {
resolve();
}, ms);
});
}
exports.waitForTimeout = waitForTimeout;