Every new change
This commit is contained in:
6
node_modules/rxjs/_esm5/internal/operators/distinctUntilKeyChanged.js
generated
vendored
Normal file
6
node_modules/rxjs/_esm5/internal/operators/distinctUntilKeyChanged.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/** PURE_IMPORTS_START _distinctUntilChanged PURE_IMPORTS_END */
|
||||
import { distinctUntilChanged } from './distinctUntilChanged';
|
||||
export function distinctUntilKeyChanged(key, compare) {
|
||||
return distinctUntilChanged(function (x, y) { return compare ? compare(x[key], y[key]) : x[key] === y[key]; });
|
||||
}
|
||||
//# sourceMappingURL=distinctUntilKeyChanged.js.map
|
Reference in New Issue
Block a user