UNPKG
async-lz-string
Version:
latest (1.1.0)
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
LZ-based compression algorithm
github.com/jackbister/async-lz-string/
jackbister/async-lz-string
async-lz-string
/
src
/
wait.ts
7 lines
(5 loc)
•
112 B
text/typescript
View Raw
1
2
3
4
5
6
7
export
async
function
wait
(
) {
return
new
Promise
(
(
resolve
) =>
{
setTimeout
(resolve,
0
); }); }