JSPM

checkbook

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q37771F

A small library providing utility methods for simple checkbook math

Package Exports

  • checkbook

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 (checkbook) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Checkbook Math

A small library providing utility methods for simple checkbook math.

Installation

npm install checkbook --save

Usage

var checkbook = require('checkbook'), sum = checkbook.sum, dif = checkbook.dif;

var a = 3, b = 2, summation = sum(a,b), difference = dif(a,b);

console.log(a+'+'+b, summation, a+'-'+b, difference);

Tests

npm test

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

Release History

  • 0.1.0 Initial release