1.1.1 • Published 4 years ago

basic-math-ops v1.1.1

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Basic Math Operations

Package developed as part of PUC-MG software architecture graduation program

This package does the basic four mathematical operations (sum, subtraction, multiplication and division).

The math module itself relies on a vanilla JS implementation of the Decorator design pattern to make the input validation logic common to all exported functions, whilst the specific operation methods augment the common logic with their specific logic.

Installation

npm i basic-math-ops

Usage

const math = require('basic-math-ops/math')

math.sum(1, 1)
math.subtract(5, 2)
math.multiply(7, 3)
math.divide(8, 4)

Find me on Github

1.1.1

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago