ea860eebfcd3f1f44500fa728d947b2730c755806461231ee8d61d04ecae75133343a4c8d5f70eeb0cacfdfe8ae1ef071b76c06399d2e19e5484ad45fbeb98 441 B

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