0.0.2 • Published 6 years ago

mathcalfun v0.0.2

Weekly downloads
9
License
-
Repository
github
Last release
6 years ago

mathcalfun

Calculate values of mathematical functions and operators easily.

Installation

Installation is done using the npm install command:

npm install mathcalfun

Usage

var math = require("mathcalfun");

console.log(math.addInt(2, 3));
console.log(math.mulInt(2, 3));
console.log(math.divInt(20, 3));
console.log(math.subInt(6, 3));