UNPKG

235 BJavaScriptView Raw
1var myval = true;
2exports.getValue=function(){
3 return myval;
4}
5
6exports.setValue=function(vals){
7 myval = vals;
8}
9
10exports.sleep = function sleep(time) {
11 var stop = new Date().getTime();
12 setTimeout(function(){
13
14 },100);
15
16}
\No newline at end of file