UNPKG

decentralized-internet

Version:

An NPM library of programs to create decentralized web and distributed computing projects

1 lines 140 B
"use strict";const fibonacci=function(c){const o=[1,1];for(let t=2;t<c+2;t++)o[t]=o[t-1]+o[t-2];return o.slice(2)};module.exports=fibonacci;