mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-10 19:54:57 +02:00
7 lines
195 B
JavaScript
7 lines
195 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
function wait(timeout) {
|
|
return new Promise((resolve) => setTimeout(resolve, timeout));
|
|
}
|
|
exports.default = wait;
|