Skip to content

stephcurt/kova.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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>

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published