1.1.6 • Published 6 years ago
real-math v1.1.6
Real Math
A arithmetical package that will facilitate your programming life. Made by Loliticos
How to install
npm i real-math
Example
const Math = require('real-math');
const random = Math.random(10, 900) // Min: 10 Max: 900
console.log(Math.floor(random))
const max = Math.max(1, 2, 3) // Expected output: 3
console.log(max)
const min = Math.min(1, 2, 3) // Expected output: 1
console.log(min)