UNPKG

rx-nostr

Version:

A library based on RxJS, which allows Nostr applications to easily communicate with relays.

4 lines (3 loc) 95 B
export function subtract<T>(x: T[], y: T[]): T[] { return x.filter((e) => !y.includes(e)); }