export function difference<K, V>(x: Entries<K, V>, y: Entries<K, V>): Map<K, V> {
  return difference$(new Map(x), y);
}