File size: 187 Bytes
4327358
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { filter } from 'rxjs';

/**
 * Just as filter, but opposite
 */
export function exclude<T>(predicate: (...args) => boolean) {
  return filter((...args) => !predicate(...args));
}