mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 16:28:24 -04: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;
|