mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-09 06:12:07 +00: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){}
|
|
}
|
|
|