objectGroupBy.ts
utils/objectGroupBy.ts
No strong subsystem tag
19
Lines
511
Bytes
1
Exports
0
Imports
10
Keywords
What this is
This page documents one file from the repository and includes its full source so you can read it without leaving the docs site.
Beginner explanation
This file is one piece of the larger system. Its name, directory, imports, and exports show where it fits. Start by reading the exports and related files first.
How it is used
Start from the exports list and related files. Those are the easiest clues for where this file fits into the system.
Expert explanation
Architecturally, this file intersects with general runtime concerns. It contains 19 lines, 0 detected imports, and 1 detected exports.
Important relationships
Detected exports
objectGroupBy
Keywords
resultitemindexitemskeyselectorpartialrecordhttpstc39ecma262
Detected imports
- No import paths detected.
Source notes
This page embeds the full file contents. Small or leaf files are still indexed honestly instead of being over-explained.
Full source
/**
* https://tc39.es/ecma262/multipage/fundamental-objects.html#sec-object.groupby
*/
export function objectGroupBy<T, K extends PropertyKey>(
items: Iterable<T>,
keySelector: (item: T, index: number) => K,
): Partial<Record<K, T[]>> {
const result = Object.create(null) as Partial<Record<K, T[]>>
let index = 0
for (const item of items) {
const key = keySelector(item, index++)
if (result[key] === undefined) {
result[key] = []
}
result[key].push(item)
}
return result
}