delay
delay là một hàm giúp bạn delay một hành động nào đó.
Ví dụ
import { delay } from '@xobuilder/utils';
function doSomething() {
console.log('World');
}
async function main() {
console.log('Hello');
// Chờ 1000ms
await delay(1000);
doSomething();
}