aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/countdown.coffee
blob: 821fc9fb16a9025536ee28cdf7ad447fe843ca6e (plain)
1
2
3
4
5
6
7
8
t = 10
interval = setInterval ->
  if t > 0
    console.log t--
  else
    console.log 'BLAST OFF!'
    phantom.exit()
, 1000