Fast, lightweight, and extinsible mathematical and statistical functions.
NPM npm bundle size (scoped) npm bundle size (scoped version) Libraries.io dependency status for latest release, scoped npm package NPM
This library is available through the npm registry.
NPM
$ npm -i @princedev/calculate
Yarn
$ yarn add @princedev/calculate
Start using it by importing the library first.
const calculate = require('@princedev/calculate');
import { sum } from '@princedev/calculate';
Getting the sum of given numbers.
import { sum } from '@princedev/calculate'; sum(12,24); // output: 36 sum(12,24,36,48,60,72,84,96,108,120,132); // output: 792 sum(...[12,24,36,48,60,72,84,96,108,120,132]); // output: 792
Can also be done in this way.
import calculate from '@princedev/calculate'; calculate.sum(12,24); // output: 36 calculate.sum(12,24,36,48,60,72,84,96,108,120,132) // output: 792
Read the docs for more.
- Prince Neil Cedrick Castro - Initial work
See also the list of contributors who participated in this project.