UNPKG

426 BJavaScriptView Raw
1var fib;
2fib = function () {
3 var a, current, b;
4 a = 0;
5 current = 1;
6 function _$loop_0(_$loop_0__$cont) {
7 if (true) {
8 b = a;
9 a = current;
10 current = a + b;
11 setTimeout(function () {
12 console.log(current);
13 _$loop_0(_$loop_0__$cont);
14 }, 1000);
15 } else {
16 _$loop_0__$cont();
17 }
18 }
19 _$loop_0(function () {
20 });
21};
22fib();
23/* Generated by Continuation.js v0.1.1 */
\No newline at end of file