• Returns a subset of an object, whose properties match the given predicate

    Type Parameters

    • T = any

    Parameters

    • obj: Record<string, T>

      The object whose properties should be filtered

    • predicate: Predicate<T>

      A predicate function which is applied to the object's properties

    Returns Record<string, T>