UNPKG
ahooks-v2
Version:
latest (2.10.15)
2.10.15
2.10.13
react hooks library
github.com/alibaba/hooks
alibaba/hooks
ahooks-v2
/
es
/
utils
/
testingHelpers.js
7 lines
•
139 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
function
sleep
(
time
) {
return
new
Promise
(
function
(
resolve
) {
setTimeout
(
function
(
) {
resolve
(); }, time); }); }