UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

6 lines (5 loc) 147 B
/** * Groups an array of objects by the given key */ declare const groupBy: (arr: Object[], key: string) => Object; export default groupBy;