From 9090c1904fce3b08300621ce8f2bd1bb196a03bf Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 22 May 2016 17:31:36 -0700 Subject: [PATCH] Add `_.property` shorthand note to `_.countBy` docs. [ci skip] --- lodash.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lodash.js b/lodash.js index ed0264a3c..7001d3a48 100644 --- a/lodash.js +++ b/lodash.js @@ -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 } */