tinymath-dv
v1.0.0
Published
A tiny JS math library
Readme
TinyMath
TinyMath is a minimal JavaScript library for basic math operations.
Installation
npm install tinymathUsage
import TinyMath from 'tinymath';
TinyMath.add(2, 3); // 5
TinyMath.mean([1, 2, 3]); // 2