UNPKG
unmind-athena-client
Version:
latest (1.1.1)
2.5.2
2.5.1
1.1.1
1.1.0
a nodejs simple aws athena client
github.com/abrahamunmind/unmind-athena
abrahamunmind/unmind-athena
unmind-athena-client
/
build
/
lib
/
util.js
12 lines
•
312 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
const
timers_1 =
require
(
"timers"
);
function
sleep
(
ms
) {
return
new
Promise
(
(
resolve
) =>
{ timers_1.
setTimeout
(
() =>
{
resolve
(); }, ms); }); }
exports
.
sleep
= sleep;
//# sourceMappingURL=util.js.map