Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 360 Bytes

readme.md

File metadata and controls

26 lines (17 loc) · 360 Bytes

math-sum

Sum numbers

Install

npm install math-sum

Usage

import mathSum from 'math-sum';

mathSum(5, 5);
//=> 10

mathSum([1, 2, 3, 4]);
//=> 10

Related