• Filters the array

    Example

    whereIn([1, 2, 2, 3, 4, 4, 5], [3,4]); // [3,4,4]
    

    Type Parameters

    • T

    Parameters

    • arr: T[]
    • value: T[]

    Returns T[]

  • Filters the array

    Example

    whereIn([{count:1}, {count:20}, {count:15}], "count", [1, 15]); // [{count:1},{count:15}]
    

    Type Parameters

    • T

    Parameters

    • arr: T[]
    • field: string
    • value: unknown[]

    Returns T[]

Generated using TypeDoc