UNPKG

universal-calci-pro

Version:

Calculator to calculate big number operations

30 lines (18 loc) 587 B
# universal-calci-pro A big number multiplier with any values , takes two input and must be string. ### [Shubham Aswal](https://www.linkedin.com/in/shubham-aswal-528462130) ## Installation ``` npm install --save universal-calci-pro ``` ## Usage: ```javascript `// @ts-ignore` `for typescript` import { multiplier } from "universal-calci-pro"; let value1 = num1 `should be string format` let value2 = num2 `should be string format` const multipliedValue = multiplier(value1,value2) console.log("multipliedValue",multipliedValue) Upcoming Features 1. Big Number Division ```