-
-
Save mohamedaboelmagd/652614a250cf0c9cee094124886f4545 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function dirtyCheck<U>(source: Observable<U>) { | |
return function<T>(valueChanges: Observable<T>): Observable<boolean> { | |
const isDirty$ = combineLatest( | |
source, | |
valueChanges, | |
).pipe( | |
debounceTime(300), | |
map(([a, b]) => isEqual(a, b) === false), | |
startWith(false), | |
); | |
return isDirty$; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment