forked from helpers/handlebars-helpers
-
Notifications
You must be signed in to change notification settings - Fork 4
/
math.js
248 lines (213 loc) · 4.38 KB
/
math.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
const utils = require('./utils');
/**
* @exports math
*/
const helpers = module.exports;
function coerceAndTransform(a, b, fn) {
const aa = +a;
const bb = +b;
if (!isFinite(aa)) {
throw new TypeError('expected the first argument to be a number');
}
if (!isFinite(bb)) {
throw new TypeError('expected the second argument to be a number');
}
return fn(aa, bb);
}
/**
* Return the magnitude of `a`.
*
* @param {Number} `a`
* @return {Number}
* @api public
*/
helpers.abs = function(num) {
if (!utils.isNumber(num)) {
throw new TypeError('expected a number');
}
return Math.abs(num);
};
/**
* Return the sum of `a` plus `b`.
*
* @param {Number} `a` augend
* @param {Number} `b` addend
* @return {Number}
* @api public
*/
helpers.add = function(a, b) {
return coerceAndTransform(a, b, (na, nb) => na + nb);
};
/**
* Returns the average of all numbers in the given array.
*
* ```handlebars
* {{avg "[1, 2, 3, 4, 5]"}}
* <!-- results in: '3' -->
* ```
*
* @param {Array} `array` Array of numbers to add up.
* @return {Number}
* @api public
*/
helpers.avg = function() {
const args = [].concat.apply([], arguments);
// remove handlebars options object
args.pop();
return helpers.sum(args) / args.length;
};
/**
* Get the `Math.ceil()` of the given value.
*
* @param {Number} `value`
* @return {Number}
* @api public
*/
helpers.ceil = function(num) {
const val = +num;
if (!isFinite(val)) {
throw new TypeError('expected a number');
}
return Math.ceil(val);
};
/**
* Divide `a` by `b`
*
* @param {Number} `a` numerator
* @param {Number} `b` denominator
* @api public
*/
helpers.divide = function(a, b) {
return coerceAndTransform(a, b, (na, nb) => na / nb);
};
/**
* Get the `Math.floor()` of the given value.
*
* @param {Number} `value`
* @return {Number}
* @api public
*/
helpers.floor = function(value) {
const num = +value;
if (!isFinite(num)) {
throw new TypeError('expected a number');
}
return Math.floor(num);
};
/**
* Return the difference of `a` minus `b`.
*
* @param {Number} `a` minuend
* @param {Number} `b` subtrahend
* @alias subtract
* @api public
*/
helpers.minus = function(a, b) {
return coerceAndTransform(a, b, (na, nb) => na - nb);
};
/**
* Get the remainder of a division operation.
*
* @param {Number} `a`
* @param {Number} `b`
* @return {Number}
* @api public
*/
helpers.modulo = function(a, b) {
return coerceAndTransform(a, b, (na, nb) => na % nb);
};
/**
* Return the product of `a` times `b`.
*
* @param {Number} `a` factor
* @param {Number} `b` multiplier
* @return {Number}
* @alias times
* @api public
*/
helpers.multiply = function(a, b) {
return coerceAndTransform(a, b, (na, nb) => na * nb);
};
/**
* Add `a` by `b`.
*
* @param {Number} `a` factor
* @param {Number} `b` multiplier
* @api public
*/
helpers.plus = helpers.add;
/**
* Generate a random number between two values
*
* @param {Number} `min`
* @param {Number} `max`
* @return {String}
* @api public
*/
helpers.random = function(min, max) {
return coerceAndTransform(min, max, (nmin, nmax) => nmin + Math.floor(Math.random() * (nmax - nmin + 1)));
};
/**
* Get the remainder when `a` is divided by `b`.
*
* @param {Number} `a` a
* @param {Number} `b` b
* @api public
*/
helpers.remainder = helpers.modulo;
/**
* Round the given number.
*
* @param {Number} `number`
* @return {Number}
* @api public
*/
helpers.round = function(num) {
const nn = +num;
if (!isFinite(nn)) {
throw new TypeError('expected a number');
}
return Math.round(nn);
};
/**
* Return the product of `a` minus `b`.
*
* @param {Number} `a`
* @param {Number} `b`
* @return {Number}
* @alias minus
* @api public
*/
helpers.subtract = helpers.minus;
/**
* Returns the sum of all numbers in the given array.
*
* ```handlebars
* {{sum "[1, 2, 3, 4, 5]"}}
* <!-- results in: '15' -->
* ```
* @param {Array} `array` Array of numbers to add up.
* @return {Number}
* @api public
*/
helpers.sum = function() {
const args = [].concat.apply([], arguments);
let len = args.length;
let sum = 0;
while (len--) {
if (utils.isNumber(args[len])) {
sum += Number(args[len]);
}
}
return sum;
};
/**
* Multiply number `a` by number `b`.
*
* @param {Number} `a` factor
* @param {Number} `b` multiplier
* @return {Number}
* @alias multiply
* @api public
*/
helpers.times = helpers.multiply;