Add accumulator doc note to _.unzipWith and _.zipWith. [closes #1484] [ci skip]

This commit is contained in:
John-David Dalton
2015-09-23 19:34:07 -07:00
parent 80abaafcae
commit 5026f51dfd

View File

@@ -5709,7 +5709,8 @@
/**
* This method is like `_.unzip` except that it accepts `iteratee` to specify
* how regrouped values should be combined. The iteratee is invoked with four
* arguments: (accumulator, value, index, group).
* arguments: (accumulator, value, index, group). The first element of each
* group is used as the initial `accumulator` value.
*
* @static
* @memberOf _
@@ -5850,7 +5851,8 @@
/**
* This method is like `_.zip` except that it accepts `iteratee` to specify
* how grouped values should be combined. The iteratee is invoked with four
* arguments: (accumulator, value, index, group).
* arguments: (accumulator, value, index, group). The first element of each
* group is used as the initial `accumulator` value.
*
* @static
* @memberOf _