Add _.property shorthand note to _.countBy docs. [ci skip]

This commit is contained in:
John-David Dalton
2016-05-22 17:31:36 -07:00
parent 158b762367
commit 9090c1904f

View File

@@ -8341,6 +8341,7 @@
* _.countBy([6.1, 4.2, 6.3], Math.floor);
* // => { '4': 1, '6': 2 }
*
* // The `_.property` iteratee shorthand.
* _.countBy(['one', 'two', 'three'], 'length');
* // => { '3': 2, '5': 1 }
*/