Mutates the original array to filter out the values specified
let myArray = ['a', 'b', 'c', 'a', 'b', 'c'];pull(myArray, 'a', 'c'); // myArray = [ 'b', 'b' ];
Rest
Generated using TypeDoc
Mutates the original array to filter out the values specified
Example