Skip to content

delay

delay

返回一个延迟指定时间的 Promise

示例

ts
import { 
delay
} from 'mixte';
await
delay
(1000); // 延迟 1 秒

wait

返回一个延迟指定时间的 Promise, delay 方法的别名

示例

ts
import { 
wait
} from 'mixte';
await
wait
(1000); // 延迟 1 秒

Released under the MIT License.