1.0.0 • Published 2 years ago

lights-mathjs v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Lights MathJS

Installation: npm i lights-mathjs Usage:

const math = require("lights-mathjs");
// Or with destructuring
const { Circle } = require("lights-mathjs");

const circ = new Circle(3);
console.log(circ.area()); // Output: area of a circle with a radius of 3
console.log(circ.perimeter()); // Output: perimeter of a circle with a radius of 3