86a3cfdd9acdd2cde25ac36ca188cae0861c8d5f703383750d51d4fc89b4f5210404d776467db2a7ec8782cdfbe873ad9598937a2408b3cb2489a4e4d9efcc 290 B

12345
  1. import { distinctUntilChanged } from './distinctUntilChanged';
  2. export function distinctUntilKeyChanged(key, compare) {
  3. return distinctUntilChanged(function (x, y) { return (compare ? compare(x[key], y[key]) : x[key] === y[key]); });
  4. }
  5. //# sourceMappingURL=distinctUntilKeyChanged.js.map