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