UNPKG

enhancedmath

Version:

This package contains some enhanced mathematical operations

8 lines (7 loc) 277 B
/** * Calculates the value of the row of Fibonnaci * @param {number} index The position of the number in the row of Fibonnaci * @returns {number} The value of the row of Fibonnaci */ declare const fibonacci: (index: number) => bigint | undefined; export default fibonacci;