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

https://github.com/phocks/fib

Test jsr package
https://github.com/phocks/fib

Last synced: about 1 year ago
JSON representation

Test jsr package

Awesome Lists containing this project

README

          

# fib

Just a test module. It calculates the Fibonacci number of n.

## Usage

Pretty self-explanatory.

```ts
import { fib } from "@phocks/fib";

console.log(fib(3)); // 2
console.log(fib(5)); // 5
```