import { withoutAll } from "https://dotland.deno.dev/std@0.116.0/collections/mod.ts";
Returns an array excluding all given values.
Example:
import { withoutAll } from "https://deno.land/std@0.116.0/collections/mod.ts";
import { assertEquals } from "https://deno.land/std@0.116.0/testing/asserts.ts";
const withoutList = withoutAll([2, 1, 2, 3], [1, 2]);
assertEquals(withoutList, [3]);