mirror of
https://github.com/arnaucube/go-ethereum.git
synced 2026-02-28 05:56:45 +01:00
10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
function log(text) {
|
|
console.log("[JS TEST SCRIPT] " + text);
|
|
}
|
|
|
|
function sleep(seconds) {
|
|
var now = new Date().getTime();
|
|
while(new Date().getTime() < now + seconds){}
|
|
}
|
|
|