• Filters the array

    Example

    whereLike(["foo", "bar", "hello", "world"], "o"); // ["foo","hello","world"]
    

    Type Parameters

    • T

    Parameters

    • arr: T[]
    • value: string | RegExp

    Returns T[]

  • Filters the array

    Example

    whereLike([{foo:"hello"}, {foo:"bar"}, {foo:"world"}], "foo", /o/i); // [{foo:"hello"},{foo:"world"}]
    

    Type Parameters

    • T

    Parameters

    • arr: T[]
    • field: string
    • value: string | RegExp

    Returns T[]

Generated using TypeDoc