• Mutates the original array to filter out the values specified

    Example

    let myArray = ['a', 'b', 'c', 'a', 'b', 'c'];
    pull(myArray, 'a', 'c'); // myArray = [ 'b', 'b' ];

    Type Parameters

    • T

    Parameters

    • arr: T[]
    • Rest ...args: T[]

    Returns void

Generated using TypeDoc