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

https://github.com/alexvcasillas/fib-o

A cached fibonacci implementation
https://github.com/alexvcasillas/fib-o

cache fibonacci javascript math recursive

Last synced: about 1 year ago
JSON representation

A cached fibonacci implementation

Awesome Lists containing this project

README

          

# Fib-O

[![CircleCI](https://circleci.com/gh/alexvcasillas/fib-o.svg?style=svg)](https://circleci.com/gh/alexvcasillas/fib-o)

**Fib-O** is a cached fibonacci implementation.

## Installation

NPM

```
npm install @alexvcasillas/fib-o
```

YARN

```
yarn add @alexvcasillas/fib-o
```

## Usage

```
import { fib } from '@alexvcasillas/fib-o';
const result = fib(50);
console.log(result); // 12586269025
```