kmultiplier
v0.1.0
Published
Simple multiplication and division function
Readme
###Installation With NPM
npm install kmultiplier
####Methods
function multiply(width: number, height: number): number;
will multiply the two numbers
function power(base: number, power: number): number;
will elevate the firt number to the power of the second
function divide(dividend: number, divisor: number): number;
will divide the first number by the second
function remainder(dividend: number, divisor: number): number;
will return the remainder of the division of the first number by the second
