/kova.js

Super light weight math library designed for writing complex but readable equations.

Primary LanguageJavaScriptMIT LicenseMIT

kova.js

Super light weight math library designed for writing complex but readable equations.

Version License

+ floating point math error correction
+ control decimal precision 
+ no need for grouping operator 
+ unit tested against WolframAlpha 

- big number support 
- normalize mantissa 
- teach you math

Installation

npm install kova.js
  • I use a module bundler and install packages from npm.

    var kova = require('kova.js');
  • I use import to use modules.

    • Import all functions.
      import * as kova from 'kova.js';
    • Import a single export.
      import { add } from 'kova.js';
  • I want to support all browsers.

    <script src='https://unpkg.com/kova.js@1.0.2/dist/kova.umd.js'></script>