Sha256: 3c09151d9f3ee78376a69ff219af870e07811affdc2e4c952f0d2168b22aad68

Contents?: true

Size: 272 Bytes

Versions: 22

Compression:

Stored size: 272 Bytes

Contents

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);

Version data entries

22 entries across 20 versions & 4 rubygems

Version Path
phantomjs.rb-0.0.1 vendor/phantomjs-1.5.0-liunx-x86-dynamic/examples/fibo.js
coffeecake-0.0.1 node_modules/jasmine-reporters/ext/phantomjs/examples/fibo.js