zyzcalc
v0.0.1
Published
A lightweight library for addition, subtraction, division and multiply
Maintainers
Readme
zyz-calc v0.1
Simple calculation wrapper
Getting Started
This plugin provides a wrapper for using simple mathematics.
To install the package in your project:
npm install zyz-calc --save-devUsage
For adding two numbers
let i = zyzcalc.add(1,2);For subtracting two numbers
let i = zyzcalc.sub(1,2);For dividing two numbers
let i = zyzcalc.div(1,2);For multiplying two numbers
let i = zyzcalc.mul(1,2);