We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 397c1df commit bcd666dCopy full SHA for bcd666d
src/detailed/index.js
@@ -0,0 +1,11 @@
1
+import addedDiff from '../added';
2
+import deletedDiff from '../deleted';
3
+import updatedDiff from '../updated';
4
+
5
+const detailedDiff = (lhs, rhs) => ({
6
+ added: addedDiff(lhs, rhs),
7
+ deleted: deletedDiff(lhs, rhs),
8
+ updated: updatedDiff(lhs, rhs),
9
+});
10
11
+export default detailedDiff;
0 commit comments