Function groupByProperty

  • Groups an array of objects by the value of a specified property.

    This function iterates over the array of objects and groups them into a new object, where the key is the value of the specified property and the value is an array of objects that have that property value.

    Returns

    An object where the keys are the unique property values and the values are arrays of objects that have that property value.

    Type Parameters

    • T

    Parameters

    • objects: T[]

      The array of objects to be grouped.

    • prop: keyof T

      The property name by which the objects will be grouped.

    Returns {
        [key: string]: T[];
    }

    • [key: string]: T[]

Generated using TypeDoc