c63cfe9460715320169abe3f09d1c9dc9cda63c02fa5b9d20593bf6995ab351d4977eee324f552740471bf32a2058371b1f882781a75a62847722a7cdc8b71 485 B

123456789
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.distinctUntilKeyChanged = void 0;
  4. var distinctUntilChanged_1 = require("./distinctUntilChanged");
  5. function distinctUntilKeyChanged(key, compare) {
  6. return distinctUntilChanged_1.distinctUntilChanged(function (x, y) { return (compare ? compare(x[key], y[key]) : x[key] === y[key]); });
  7. }
  8. exports.distinctUntilKeyChanged = distinctUntilKeyChanged;
  9. //# sourceMappingURL=distinctUntilKeyChanged.js.map