• Filters the array

    Example

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

    Type Parameters

    • T

    Parameters

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

    Returns T[]

  • Filters the array

    Example

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

    Type Parameters

    • T

    Parameters

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

    Returns T[]

Generated using TypeDoc