Add explainer for db-unchanged

This commit is contained in:
Julia Friesel
2018-10-22 21:20:01 +02:00
parent 4f6a705c69
commit ef7f645248
+4
View File
@@ -1,3 +1,7 @@
// when data changes, realm gives us an object with updates
// https://realm.io/docs/javascript/latest/#collection-notifications
// but it sometimes gets fired even though there are no changes
// - we want to check for that and see if all arrays are empty
export default function (dbChanges) {
return Object.values(dbChanges).every(changeArray => changeArray.length === 0)
}