Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / phantomjs / lib / phantom / examples / countdown.coffee
1 t = 10
2 interval = setInterval ->
3   if t > 0
4     console.log t--
5   else
6     console.log 'BLAST OFF!'
7     phantom.exit()
8 , 1000