8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.wait = void 0;
|
||
|
function wait(timeout) {
|
||
|
return new Promise((resolve) => setTimeout(resolve, timeout));
|
||
|
}
|
||
|
exports.wait = wait;
|