0.2.1 • Published 5 months ago

simple-mathematic v0.2.1

Weekly downloads
-
License
ISC
Repository
github
Last release
5 months ago

Simple Mathematic library

This library consists of common mathematic functions unavailable in Math module. Main focus is on simplicity & efficient implementation.

List of available functions:

Usage

simple-mathematic package can be used in both NodeJs and in browser.

Installing simple-mathematic as npm package:

npm install simple-mathematic

The aim of the package is to use functions in the same manner as we would do with native built-in JavaScript's Math module:

import { sum, isOdd, isEven } from 'simple-mathematic';

sum(1,2,3,4,5); // 15
isOdd(123);     // true
isEven(123);    // false

To see the full documentation of usage of functions, plese refer to the list of functions section and refer to specific function

0.2.1

5 months ago

0.2.0

5 months ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago