@@ -260,22 +260,22 @@ Visit the: [code](lib/match.js) | [unit tests](test/match.js) | [issues](https:/
260
260
261
261
Visit the: [ code] ( lib/math.js ) | [ unit tests] ( test/math.js ) | [ issues] ( https://github.com/helpers/handlebars-helpers/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+math+helpers ) )
262
262
263
- * ** [ abs] ( #abs ) ** ([ code] ( lib/math.js#L16 ) | [ no tests] )
264
- * ** [ add] ( #add ) ** ([ code] ( lib/math.js#L32 ) | [ tests] ( test/math.js#L10 ) )
265
- * ** [ avg] ( #avg ) ** ([ code] ( lib/math.js#L55 ) | [ no tests] )
266
- * ** [ ceil] ( #ceil ) ** ([ code] ( lib/math.js#L70 ) | [ tests] ( test/math.js#L29 ) )
267
- * ** [ divide] ( #divide ) ** ([ code] ( lib/math.js#L85 ) | [ tests] ( test/math.js#L36 ) )
268
- * ** [ floor] ( #floor ) ** ([ code] ( lib/math.js#L103 ) | [ tests] ( test/math.js#L43 ) )
269
- * ** [ minus] ( #minus ) ** ([ code] ( lib/math.js#L119 ) | [ no tests] )
270
- * ** [ modulo] ( #modulo ) ** ([ code] ( lib/math.js#L138 ) | [ no tests] )
271
- * ** [ multiply] ( #multiply ) ** ([ code] ( lib/math.js#L158 ) | [ tests] ( test/math.js#L50 ) )
272
- * ** [ plus] ( #plus ) ** ([ code] ( lib/math.js#L176 ) | [ no tests] )
273
- * ** [ random] ( #random ) ** ([ code] ( lib/math.js#L195 ) | [ tests] ( test/math.js#L102 ) )
274
- * ** [ remainder] ( #remainder ) ** ([ code] ( lib/math.js#L213 ) | [ tests] ( test/math.js#L57 ) )
275
- * ** [ round] ( #round ) ** ([ code] ( lib/math.js#L225 ) | [ tests] ( test/math.js#L69 ) )
276
- * ** [ subtract] ( #subtract ) ** ([ code] ( lib/math.js#L242 ) | [ tests] ( test/math.js#L76 ) )
277
- * ** [ sum] ( #sum ) ** ([ code] ( lib/math.js#L264 ) | [ tests] ( test/math.js#L83 ) )
278
- * ** [ times] ( #times ) ** ([ code] ( lib/math.js#L287 ) | [ no tests] )
263
+ * ** [ abs] ( #abs ) ** ([ code] ( lib/math.js#L15 ) | [ no tests] )
264
+ * ** [ add] ( #add ) ** ([ code] ( lib/math.js#L31 ) | [ tests] ( test/math.js#L10 ) )
265
+ * ** [ avg] ( #avg ) ** ([ code] ( lib/math.js#L54 ) | [ no tests] )
266
+ * ** [ ceil] ( #ceil ) ** ([ code] ( lib/math.js#L69 ) | [ tests] ( test/math.js#L29 ) )
267
+ * ** [ divide] ( #divide ) ** ([ code] ( lib/math.js#L84 ) | [ tests] ( test/math.js#L36 ) )
268
+ * ** [ floor] ( #floor ) ** ([ code] ( lib/math.js#L102 ) | [ tests] ( test/math.js#L43 ) )
269
+ * ** [ minus] ( #minus ) ** ([ code] ( lib/math.js#L118 ) | [ no tests] )
270
+ * ** [ modulo] ( #modulo ) ** ([ code] ( lib/math.js#L137 ) | [ no tests] )
271
+ * ** [ multiply] ( #multiply ) ** ([ code] ( lib/math.js#L157 ) | [ tests] ( test/math.js#L50 ) )
272
+ * ** [ plus] ( #plus ) ** ([ code] ( lib/math.js#L175 ) | [ no tests] )
273
+ * ** [ random] ( #random ) ** ([ code] ( lib/math.js#L194 ) | [ tests] ( test/math.js#L102 ) )
274
+ * ** [ remainder] ( #remainder ) ** ([ code] ( lib/math.js#L212 ) | [ tests] ( test/math.js#L57 ) )
275
+ * ** [ round] ( #round ) ** ([ code] ( lib/math.js#L224 ) | [ tests] ( test/math.js#L69 ) )
276
+ * ** [ subtract] ( #subtract ) ** ([ code] ( lib/math.js#L241 ) | [ tests] ( test/math.js#L76 ) )
277
+ * ** [ sum] ( #sum ) ** ([ code] ( lib/math.js#L263 ) | [ tests] ( test/math.js#L83 ) )
278
+ * ** [ times] ( #times ) ** ([ code] ( lib/math.js#L286 ) | [ no tests] )
279
279
280
280
### [ misc helpers] ( #misc )
281
281
@@ -1648,27 +1648,26 @@ Returns true if a filepath contains the given pattern. Options may be passed on
1648
1648
1649
1649
## math
1650
1650
1651
- ### [ {{abs}}] ( lib/math.js#L16 )
1651
+ ### [ {{abs}}] ( lib/math.js#L15 )
1652
1652
1653
- Return the product of ` a ` plus ` b ` .
1653
+ Return the magnitude of ` a ` .
1654
1654
1655
1655
** Params**
1656
1656
1657
1657
* ` a ` ** {Number}**
1658
- * ` b ` ** {Number}**
1659
1658
* ` returns ` ** {Number}**
1660
1659
1661
- ### [ {{add}}] ( lib/math.js#L32 )
1660
+ ### [ {{add}}] ( lib/math.js#L31 )
1662
1661
1663
- Return the product of ` a ` plus ` b ` .
1662
+ Return the sum of ` a ` plus ` b ` .
1664
1663
1665
1664
** Params**
1666
1665
1667
1666
* ` a ` ** {Number}**
1668
1667
* ` b ` ** {Number}**
1669
1668
* ` returns ` ** {Number}**
1670
1669
1671
- ### [ {{avg}}] ( lib/math.js#L55 )
1670
+ ### [ {{avg}}] ( lib/math.js#L54 )
1672
1671
1673
1672
Returns the average of all numbers in the given array.
1674
1673
@@ -1684,7 +1683,7 @@ Returns the average of all numbers in the given array.
1684
1683
<!-- results in: '3' -->
1685
1684
```
1686
1685
1687
- ### [ {{ceil}}] ( lib/math.js#L70 )
1686
+ ### [ {{ceil}}] ( lib/math.js#L69 )
1688
1687
1689
1688
Get the ` Math.ceil() ` of the given value.
1690
1689
@@ -1693,7 +1692,7 @@ Get the `Math.ceil()` of the given value.
1693
1692
* ` value ` ** {Number}**
1694
1693
* ` returns ` ** {Number}**
1695
1694
1696
- ### [ {{divide}}] ( lib/math.js#L85 )
1695
+ ### [ {{divide}}] ( lib/math.js#L84 )
1697
1696
1698
1697
Divide ` a ` by ` b `
1699
1698
@@ -1702,7 +1701,7 @@ Divide `a` by `b`
1702
1701
* ` a ` ** {Number}** : numerator
1703
1702
* ` b ` ** {Number}** : denominator
1704
1703
1705
- ### [ {{floor}}] ( lib/math.js#L103 )
1704
+ ### [ {{floor}}] ( lib/math.js#L102 )
1706
1705
1707
1706
Get the ` Math.floor() ` of the given value.
1708
1707
@@ -1711,16 +1710,16 @@ Get the `Math.floor()` of the given value.
1711
1710
* ` value ` ** {Number}**
1712
1711
* ` returns ` ** {Number}**
1713
1712
1714
- ### [ {{minus}}] ( lib/math.js#L119 )
1713
+ ### [ {{minus}}] ( lib/math.js#L118 )
1715
1714
1716
- Return the product of ` a ` minus ` b ` .
1715
+ Return the difference of ` a ` minus ` b ` .
1717
1716
1718
1717
** Params**
1719
1718
1720
1719
* ` a ` ** {Number}**
1721
1720
* ` b ` ** {Number}**
1722
1721
1723
- ### [ {{modulo}}] ( lib/math.js#L138 )
1722
+ ### [ {{modulo}}] ( lib/math.js#L137 )
1724
1723
1725
1724
Get the remainder of a division operation.
1726
1725
@@ -1730,17 +1729,17 @@ Get the remainder of a division operation.
1730
1729
* ` b ` ** {Number}**
1731
1730
* ` returns ` ** {Number}**
1732
1731
1733
- ### [ {{multiply}}] ( lib/math.js#L158 )
1732
+ ### [ {{multiply}}] ( lib/math.js#L157 )
1734
1733
1735
- Multiply number ` a ` by number ` b ` .
1734
+ Return the product of ` a ` times ` b ` .
1736
1735
1737
1736
** Params**
1738
1737
1739
1738
* ` a ` ** {Number}** : factor
1740
1739
* ` b ` ** {Number}** : multiplier
1741
1740
* ` returns ` ** {Number}**
1742
1741
1743
- ### [ {{plus}}] ( lib/math.js#L176 )
1742
+ ### [ {{plus}}] ( lib/math.js#L175 )
1744
1743
1745
1744
Add ` a ` by ` b ` .
1746
1745
@@ -1749,7 +1748,7 @@ Add `a` by `b`.
1749
1748
* ` a ` ** {Number}** : factor
1750
1749
* ` b ` ** {Number}** : multiplier
1751
1750
1752
- ### [ {{random}}] ( lib/math.js#L195 )
1751
+ ### [ {{random}}] ( lib/math.js#L194 )
1753
1752
1754
1753
Generate a random number between two values
1755
1754
@@ -1759,7 +1758,7 @@ Generate a random number between two values
1759
1758
* ` max ` ** {Number}**
1760
1759
* ` returns ` ** {String}**
1761
1760
1762
- ### [ {{remainder}}] ( lib/math.js#L213 )
1761
+ ### [ {{remainder}}] ( lib/math.js#L212 )
1763
1762
1764
1763
Get the remainder when ` a ` is divided by ` b ` .
1765
1764
@@ -1768,7 +1767,7 @@ Get the remainder when `a` is divided by `b`.
1768
1767
* ` a ` ** {Number}** : a
1769
1768
* ` b ` ** {Number}** : b
1770
1769
1771
- ### [ {{round}}] ( lib/math.js#L225 )
1770
+ ### [ {{round}}] ( lib/math.js#L224 )
1772
1771
1773
1772
Round the given number.
1774
1773
@@ -1777,7 +1776,7 @@ Round the given number.
1777
1776
* ` number ` ** {Number}**
1778
1777
* ` returns ` ** {Number}**
1779
1778
1780
- ### [ {{subtract}}] ( lib/math.js#L242 )
1779
+ ### [ {{subtract}}] ( lib/math.js#L241 )
1781
1780
1782
1781
Return the product of ` a ` minus ` b ` .
1783
1782
@@ -1787,7 +1786,7 @@ Return the product of `a` minus `b`.
1787
1786
* ` b ` ** {Number}**
1788
1787
* ` returns ` ** {Number}**
1789
1788
1790
- ### [ {{sum}}] ( lib/math.js#L264 )
1789
+ ### [ {{sum}}] ( lib/math.js#L263 )
1791
1790
1792
1791
Returns the sum of all numbers in the given array.
1793
1792
@@ -1803,7 +1802,7 @@ Returns the sum of all numbers in the given array.
1803
1802
<!-- results in: '15' -->
1804
1803
```
1805
1804
1806
- ### [ {{times}}] ( lib/math.js#L287 )
1805
+ ### [ {{times}}] ( lib/math.js#L286 )
1807
1806
1808
1807
Multiply number ` a ` by number ` b ` .
1809
1808
@@ -3267,7 +3266,7 @@ Pull requests and stars are always welcome. For bugs and feature requests, [plea
3267
3266
| ** Commits** | ** Contributor** |
3268
3267
| --- | --- |
3269
3268
| 527 | [ jonschlinkert] ( https://github.com/jonschlinkert ) |
3270
- | 227 | [ doowb] ( https://github.com/doowb ) |
3269
+ | 230 | [ doowb] ( https://github.com/doowb ) |
3271
3270
| 12 | [ spacedawwwg] ( https://github.com/spacedawwwg ) |
3272
3271
| 5 | [ hariadi] ( https://github.com/hariadi ) |
3273
3272
| 4 | [ ChiperSoft] ( https://github.com/ChiperSoft ) |
@@ -3288,6 +3287,7 @@ Pull requests and stars are always welcome. For bugs and feature requests, [plea
3288
3287
| 2 | [ Arkkimaagi] ( https://github.com/Arkkimaagi ) |
3289
3288
| 2 | [ cfjedimaster] ( https://github.com/cfjedimaster ) |
3290
3289
| 2 | [ backflip] ( https://github.com/backflip ) |
3290
+ | 2 | [ kevindavus] ( https://github.com/kevindavus ) |
3291
3291
| 2 | [ nlfurniss] ( https://github.com/nlfurniss ) |
3292
3292
| 1 | [ alesk] ( https://github.com/alesk ) |
3293
3293
| 1 | [ alisd23] ( https://github.com/alisd23 ) |
@@ -3353,4 +3353,4 @@ Released under the [MIT License](LICENSE).
3353
3353
3354
3354
***
3355
3355
3356
- _ This file was generated by [ verb-generate-readme] ( https://github.com/verbose/verb-generate-readme ) , v0.6.0, on August 21 , 2017._
3356
+ _ This file was generated by [ verb-generate-readme] ( https://github.com/verbose/verb-generate-readme ) , v0.6.0, on August 31 , 2017._
0 commit comments