UNPKG
@acot/utils
Version:
canary (0.0.10-canary.0)
latest (0.0.19)
0.0.19
0.0.18
0.0.17
0.0.16
0.0.15
0.0.14
0.0.13
0.0.12
0.0.11
0.0.10
0.0.10-canary.0
0.0.7-canary.0
0.0.6
0.0.5
0.0.5-canary.0
0.0.4
0.0.4-canary.0
0.0.3
0.0.3-canary.0
0.0.2
0.0.2-canary.3
0.0.2-canary.2
0.0.2-canary.1
0.0.2-canary.0
0.0.1
Utility functions for acot.
github.com/acot-a11y/acot/tree/main/packages/utils
acot-a11y/acot
@acot/utils
/
lib
/
sleep.js
6 lines
(5 loc)
•
205 B
JavaScript
View Raw
1
2
3
4
5
6
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
sleep
=
void
0
;
const
sleep
= (
ms
) =>
new
Promise
(
(
resolve
) =>
setTimeout
(
() =>
resolve
(), ms));
exports
.
sleep
= sleep;