Skip to content

Commit 7e724f9

Browse files
committed
run verb to generate readme
1 parent 47a1052 commit 7e724f9

File tree

1 file changed

+39
-39
lines changed

1 file changed

+39
-39
lines changed

README.md

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -260,22 +260,22 @@ Visit the: [code](lib/match.js) | [unit tests](test/match.js) | [issues](https:/
260260

261261
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))
262262

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])
279279

280280
### [misc helpers](#misc)
281281

@@ -1648,27 +1648,26 @@ Returns true if a filepath contains the given pattern. Options may be passed on
16481648

16491649
## math
16501650

1651-
### [{{abs}}](lib/math.js#L16)
1651+
### [{{abs}}](lib/math.js#L15)
16521652

1653-
Return the product of `a` plus `b`.
1653+
Return the magnitude of `a`.
16541654

16551655
**Params**
16561656

16571657
* `a` **{Number}**
1658-
* `b` **{Number}**
16591658
* `returns` **{Number}**
16601659

1661-
### [{{add}}](lib/math.js#L32)
1660+
### [{{add}}](lib/math.js#L31)
16621661

1663-
Return the product of `a` plus `b`.
1662+
Return the sum of `a` plus `b`.
16641663

16651664
**Params**
16661665

16671666
* `a` **{Number}**
16681667
* `b` **{Number}**
16691668
* `returns` **{Number}**
16701669

1671-
### [{{avg}}](lib/math.js#L55)
1670+
### [{{avg}}](lib/math.js#L54)
16721671

16731672
Returns the average of all numbers in the given array.
16741673

@@ -1684,7 +1683,7 @@ Returns the average of all numbers in the given array.
16841683
<!-- results in: '3' -->
16851684
```
16861685

1687-
### [{{ceil}}](lib/math.js#L70)
1686+
### [{{ceil}}](lib/math.js#L69)
16881687

16891688
Get the `Math.ceil()` of the given value.
16901689

@@ -1693,7 +1692,7 @@ Get the `Math.ceil()` of the given value.
16931692
* `value` **{Number}**
16941693
* `returns` **{Number}**
16951694

1696-
### [{{divide}}](lib/math.js#L85)
1695+
### [{{divide}}](lib/math.js#L84)
16971696

16981697
Divide `a` by `b`
16991698

@@ -1702,7 +1701,7 @@ Divide `a` by `b`
17021701
* `a` **{Number}**: numerator
17031702
* `b` **{Number}**: denominator
17041703

1705-
### [{{floor}}](lib/math.js#L103)
1704+
### [{{floor}}](lib/math.js#L102)
17061705

17071706
Get the `Math.floor()` of the given value.
17081707

@@ -1711,16 +1710,16 @@ Get the `Math.floor()` of the given value.
17111710
* `value` **{Number}**
17121711
* `returns` **{Number}**
17131712

1714-
### [{{minus}}](lib/math.js#L119)
1713+
### [{{minus}}](lib/math.js#L118)
17151714

1716-
Return the product of `a` minus `b`.
1715+
Return the difference of `a` minus `b`.
17171716

17181717
**Params**
17191718

17201719
* `a` **{Number}**
17211720
* `b` **{Number}**
17221721

1723-
### [{{modulo}}](lib/math.js#L138)
1722+
### [{{modulo}}](lib/math.js#L137)
17241723

17251724
Get the remainder of a division operation.
17261725

@@ -1730,17 +1729,17 @@ Get the remainder of a division operation.
17301729
* `b` **{Number}**
17311730
* `returns` **{Number}**
17321731

1733-
### [{{multiply}}](lib/math.js#L158)
1732+
### [{{multiply}}](lib/math.js#L157)
17341733

1735-
Multiply number `a` by number `b`.
1734+
Return the product of `a` times `b`.
17361735

17371736
**Params**
17381737

17391738
* `a` **{Number}**: factor
17401739
* `b` **{Number}**: multiplier
17411740
* `returns` **{Number}**
17421741

1743-
### [{{plus}}](lib/math.js#L176)
1742+
### [{{plus}}](lib/math.js#L175)
17441743

17451744
Add `a` by `b`.
17461745

@@ -1749,7 +1748,7 @@ Add `a` by `b`.
17491748
* `a` **{Number}**: factor
17501749
* `b` **{Number}**: multiplier
17511750

1752-
### [{{random}}](lib/math.js#L195)
1751+
### [{{random}}](lib/math.js#L194)
17531752

17541753
Generate a random number between two values
17551754

@@ -1759,7 +1758,7 @@ Generate a random number between two values
17591758
* `max` **{Number}**
17601759
* `returns` **{String}**
17611760

1762-
### [{{remainder}}](lib/math.js#L213)
1761+
### [{{remainder}}](lib/math.js#L212)
17631762

17641763
Get the remainder when `a` is divided by `b`.
17651764

@@ -1768,7 +1767,7 @@ Get the remainder when `a` is divided by `b`.
17681767
* `a` **{Number}**: a
17691768
* `b` **{Number}**: b
17701769

1771-
### [{{round}}](lib/math.js#L225)
1770+
### [{{round}}](lib/math.js#L224)
17721771

17731772
Round the given number.
17741773

@@ -1777,7 +1776,7 @@ Round the given number.
17771776
* `number` **{Number}**
17781777
* `returns` **{Number}**
17791778

1780-
### [{{subtract}}](lib/math.js#L242)
1779+
### [{{subtract}}](lib/math.js#L241)
17811780

17821781
Return the product of `a` minus `b`.
17831782

@@ -1787,7 +1786,7 @@ Return the product of `a` minus `b`.
17871786
* `b` **{Number}**
17881787
* `returns` **{Number}**
17891788

1790-
### [{{sum}}](lib/math.js#L264)
1789+
### [{{sum}}](lib/math.js#L263)
17911790

17921791
Returns the sum of all numbers in the given array.
17931792

@@ -1803,7 +1802,7 @@ Returns the sum of all numbers in the given array.
18031802
<!-- results in: '15' -->
18041803
```
18051804

1806-
### [{{times}}](lib/math.js#L287)
1805+
### [{{times}}](lib/math.js#L286)
18071806

18081807
Multiply number `a` by number `b`.
18091808

@@ -3267,7 +3266,7 @@ Pull requests and stars are always welcome. For bugs and feature requests, [plea
32673266
| **Commits** | **Contributor** |
32683267
| --- | --- |
32693268
| 527 | [jonschlinkert](https://github.com/jonschlinkert) |
3270-
| 227 | [doowb](https://github.com/doowb) |
3269+
| 230 | [doowb](https://github.com/doowb) |
32713270
| 12 | [spacedawwwg](https://github.com/spacedawwwg) |
32723271
| 5 | [hariadi](https://github.com/hariadi) |
32733272
| 4 | [ChiperSoft](https://github.com/ChiperSoft) |
@@ -3288,6 +3287,7 @@ Pull requests and stars are always welcome. For bugs and feature requests, [plea
32883287
| 2 | [Arkkimaagi](https://github.com/Arkkimaagi) |
32893288
| 2 | [cfjedimaster](https://github.com/cfjedimaster) |
32903289
| 2 | [backflip](https://github.com/backflip) |
3290+
| 2 | [kevindavus](https://github.com/kevindavus) |
32913291
| 2 | [nlfurniss](https://github.com/nlfurniss) |
32923292
| 1 | [alesk](https://github.com/alesk) |
32933293
| 1 | [alisd23](https://github.com/alisd23) |
@@ -3353,4 +3353,4 @@ Released under the [MIT License](LICENSE).
33533353

33543354
***
33553355

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

Comments
 (0)