1.0.0 • Published 1 year ago

grommailpasha v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

grommailpasha

This is a Node.js module for performing various mathematical operations.

Installation

You can install this module via npm: npm install grommailpasha

Usage

const math = require('awesome-math');

// Calculate Fibonacci number
console.log(math.fibonacci(10)); // Output: 55

// Check if a number is prime
console.log(math.isNumberPrime(17)); // Output: true

// Reverse a string
console.log(math.reverseString('hello')); // Output: 'olleh'