aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/fibo.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/fibo.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/fibo.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/fibo.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/fibo.js
deleted file mode 100644
index aa5d7ea0..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/phantomjs/lib/phantom/examples/fibo.js
+++ /dev/null
@@ -1,9 +0,0 @@
-var fibs = [0, 1];
-var ticker = window.setInterval(function () {
- console.log(fibs[fibs.length - 1]);
- fibs.push(fibs[fibs.length - 1] + fibs[fibs.length - 2]);
- if (fibs.length > 10) {
- window.clearInterval(ticker);
- phantom.exit();
- }
-}, 300);