UNPKG
@lets/wait
Version:
latest (2.0.2)
2.0.2
2.0.1
2.0.0
1.0.0
0.0.1
0.0.0
⏲ A promising wait function
omrilotan.com/wait/
omrilotan/wait
@lets/wait
/
index.js
8 lines
•
141 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
/** * A waiting promise *
@param
{
Number
}
ms
*
@return
{
Promise
} */
export
default
ms =>
new
Promise
(
resolve
=>
setTimeout
(resolve, ms) );