mirror of
https://github.com/encounter/phantomjs.git
synced 2026-03-30 11:35:11 -07:00
9 lines
142 B
CoffeeScript
9 lines
142 B
CoffeeScript
t = 10
|
|
interval = setInterval ->
|
|
if t > 0
|
|
console.log t--
|
|
else
|
|
console.log 'BLAST OFF!'
|
|
phantom.exit()
|
|
, 1000
|