JSPM

  • Created
  • Published
  • Downloads 773
  • Score
    100M100P100Q92296F
  • License MIT

A simple math library written in Javascript.

Package Exports

  • math.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (math.js) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

math.js

A simple math library written in Javascript

Install

$ npm install math.js

Use

// load the module
var math = require('math.js');

// ask for a number's ceil
math.ceil(13);

Test

To execute the library's tests, first install the project dependencies:

$ npm install

Then, run the tests

$ npm test