1.0.2 • Published 4 years ago

mathclone-gh v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

JavaScript's Math Clone

The purpose of this package is to test uploading modules to NPM.

Install the library

npm install mathclone-gh

Functionalities

Addition: add(...nums):

import MathClone from 'mathclone-gh';
 
const result = MathClone.add(1, 2, 3, 4, 5);

Multiplication: multiply(...nums):

import MathClone from 'mathclone-gh';

const result = MathClone.multiply(1, 2, 3, 4, 5);

Maximum: max(...nums):

import MathClone from 'mathclone-gh';

const result = MathClone.max(1, 2, 3, 4, 5);

Minimum: min(...nums):

import MathClone from 'mathclone-gh';

const result = MathClone.min(1, 2, 3, 4, 5);