@princedev/calculate
v1.2.7
Published
Fast, lightweight, and extinsible mathematical and statistical functions.
Downloads
34
Maintainers
Readme
@princedev/calculate
Fast, lightweight, and extinsible mathematical and statistical functions.
Table of Contents
Installation
This library is available through the npm registry.
NPM
$ npm -i @princedev/calculate
Yarn
$ yarn add @princedev/calculate
Import
Start using it by importing the library first.
CommonJS
const calculate = require('@princedev/calculate');
ES6
import { sum } from '@princedev/calculate';
Usage
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.
Authors
- Prince Neil Cedrick Castro - Initial work
See also the list of contributors who participated in this project.