groupBy - Creates an object composed of keys generated from the results of running each element of array thru getKey
groupBy(['one', 'two', 'three'], 'length');// return { '3': ['one', 'two'], '5': ['three'] } Copy
groupBy(['one', 'two', 'three'], 'length');// return { '3': ['one', 'two'], '5': ['three'] }
Generated using TypeDoc
groupBy - Creates an object composed of keys generated from the results of running each element of array thru getKey