Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/stefanotorresi/thorr-fib
- Owner: stefanotorresi
- License: mit
- Created: 2015-11-19T14:43:33.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-19T19:42:32.000Z (almost 9 years ago)
- Last Synced: 2024-10-03T16:24:21.930Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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 ]
```