0.0.10 • Published 6 years ago

mathematic-lib v0.0.10

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

Build Status

mathematic-lib

Library to simplify basic mathematical operation beetween two or more operand (arrays)

Install

npm i mathematic-lib

Basic usage

var mathematicLib = require('mathematic-lib')
mathematicLib.sum(4, 5) // => '9'
mathematicLib.multiply(4, 5) // => '20'

See spec.

Array usage

var mathematicLib = require('mathematic-lib')
var arrays = [2, 5, 10]
mathematicLib.sumArray(arrays) // => '17'
mathematicLib.multiplyArray(arrays) // => '100'

See spec.

Factorial usage

var mathematicLib = require('mathematic-lib')
mathematicLib.factorial(5) // => '120'

See spec.

0.0.10

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago

0.0.0

6 years ago