Add doc note about group ordering of _.groupBy. [ci skip] [closes #2212]

This commit is contained in:
John-David Dalton
2016-04-06 07:59:05 -07:00
parent d7f43eba6a
commit e120d63ee2

View File

@@ -8349,9 +8349,10 @@
/**
* Creates an object composed of keys generated from the results of running
* each element of `collection` thru `iteratee`. The corresponding value of
* each key is an array of elements responsible for generating the key. The
* iteratee is invoked with one argument: (value).
* each element of `collection` thru `iteratee`. The order of grouped values
* is determined by the order they occur in `collection`. The corresponding
* value of each key is an array of elements responsible for generating the
* key. The iteratee is invoked with one argument: (value).
*
* @static
* @memberOf _