/** * returns an array without the specified elements from the provided array * @example * without([2, 4], [1, 2, 3, 4, 5]) * // returns [1, 3, 5] */ export default function without(removed: T[], arr: T[]): T[]; //# sourceMappingURL=without.d.ts.map