mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
11 lines
226 B
JavaScript
11 lines
226 B
JavaScript
"use strict";
|
|
var t = 10,
|
|
interval = setInterval(function(){
|
|
if ( t > 0 ) {
|
|
console.log(t--);
|
|
} else {
|
|
console.log("BLAST OFF!");
|
|
phantom.exit();
|
|
}
|
|
}, 1000);
|