npm.io
1.0.2 • Published 5 years ago

mathclone-gh

Licence
MIT
Version
1.0.2
Deps
0
Size
4 kB
Vulns
0
Weekly
0

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);

Keywords