Skip to content

Commit feeb70c

Browse files
committed
update DOCUMENTATION.md
1 parent b6b4d6a commit feeb70c

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

DOCUMENTATION.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@
55
### Table of Contents
66

77
- [variadic](#variadic)
8+
- [absoluteValue](#absolutevalue)
89
- [average](#average)
910
- [factorial](#factorial)
1011
- [isAscending](#isascending)
12+
- [isComposit](#iscomposit)
1113
- [isDecimal](#isdecimal)
1214
- [isDescending](#isdescending)
1315
- [isEmpty](#isempty)
1416
- [isEqual](#isequal)
1517
- [isEven](#iseven)
18+
- [isIntegers](#isintegers)
1619
- [isNegativeInteger](#isnegativeinteger)
1720
- [isNegativeNumber](#isnegativenumber)
1821
- [isOdd](#isodd)
@@ -25,12 +28,25 @@
2528
- [mode](#mode)
2629
- [populationStandardDeviation](#populationstandarddeviation)
2730
- [populationVariance](#populationvariance)
31+
- [range](#range)
2832
- [sampleStandardDeviation](#samplestandarddeviation)
2933
- [sampleVariance](#samplevariance)
3034
- [sum](#sum)
3135

3236
## variadic
3337

38+
### absoluteValue
39+
40+
This function converts all numbers to a positive number
41+
42+
**Parameters**
43+
44+
- `params` **...any** One or more parameters.
45+
46+
**Meta**
47+
48+
- **author**: tdnelson2
49+
3450
### average
3551

3652
This function caculates the average of the numerical parameters
@@ -67,6 +83,18 @@ This function evaluates whether the parameters are in ascending order
6783

6884
- **author**: scottwestover
6985

86+
### isComposit
87+
88+
This function evaluates whether all numerical parameters are composit
89+
90+
**Parameters**
91+
92+
- `params` **...any** One or more parameters.
93+
94+
**Meta**
95+
96+
- **author**: tdnelson2
97+
7098
### isDecimal
7199

72100
This function evaluates whether all the parameters are decimal values
@@ -127,6 +155,18 @@ This function evaluates whether all parameters are even
127155

128156
- **author**: scottwestover
129157

158+
### isIntegers
159+
160+
This function evaluates whether all parameters are integers
161+
162+
**Parameters**
163+
164+
- `params` **...any** One or more parameters.
165+
166+
**Meta**
167+
168+
- **author**: someyoungideas
169+
130170
### isNegativeInteger
131171

132172
This function evaluates whether all integer parameters are negative
@@ -271,6 +311,18 @@ This function calculates the variance
271311

272312
- **author**: devNoiseConsulting
273313

314+
### range
315+
316+
This function returns the difference between the largest and smallest values
317+
318+
**Parameters**
319+
320+
- `params` **...any** One or more parameters.
321+
322+
**Meta**
323+
324+
- **author**: tdnelson2
325+
274326
### sampleStandardDeviation
275327

276328
This function calculates the sample standard deviation

0 commit comments

Comments
 (0)