UNPKG
njtool
Version:
latest (1.3.0)
1.3.0
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
Tool for nature.com users
github.com/masnagam/njtool
masnagam/njtool
njtool
/
lib
/
sleep.js
12 lines
(8 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
// This file is distributed under the MIT license.
// See LICENSE file in the project root for details.
'use strict'
;
// istanbul ignore next
function
sleep
(
sec
) {
return
new
Promise
(
(
resolve
) =>
setTimeout
(resolve, sec *
1000
)); }
module
.
exports
= sleep;