1.0.0 • Published 7 months ago

artur-fibonacci-package v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Fibonacci Package


Overview

This npm package provides a simple utility function to calculate the Fibonacci number at a given position. The Fibonacci sequence is a series of numbers where each number is the sum of the two preceding ones, starting with 0 and 1.


Installation

To install the package, use the following command:

npm install fibonacci-package

Usage

Before theme use, import function

const fibonacci = require("fibonacci-package");

const result = fibonacci(10);
console.log(result);
1.0.0

7 months ago