mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
17 lines
472 B
TypeScript
17 lines
472 B
TypeScript
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
|
export default function propsHaveChanged(previous: any, next: any): boolean {
|
|
if (!previous && next) return true;
|
|
if (previous && !next) return true;
|
|
if (!previous && !next) return false;
|
|
|
|
if (Object.keys(previous).length !== Object.keys(next).length) return true;
|
|
|
|
for (const n in previous) {
|
|
if (previous[n] !== next[n]) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|