Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stefanotorresi/thorr-fib

A simple Fibonacci sequence recursive implementation, made to play a bit with some NodeJS tools.
https://github.com/stefanotorresi/thorr-fib

Last synced: 18 days ago
JSON representation

A simple Fibonacci sequence recursive implementation, made to play a bit with some NodeJS tools.

Awesome Lists containing this project

README

        

# Thorr-fib

A simple Fibonacci sequence recursive implementation, made to play a bit with the NodeJS tool stack.

## Usage

```javascript
var fib = require('thorr-fib');
fib(10);
// [ 1, 1, 2, 3, 5, 8, 13, 21, 34, 55 ]
```