-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdiff.js
More file actions
31 lines (28 loc) · 769 Bytes
/
diff.js
File metadata and controls
31 lines (28 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
const _ = require('lodash');
const dotty = require('dotty');
function toArrayWithArrays(arr) {
if (_.isArray(arr)) return arr;
return _.map(arr, (value, key) => {
if (value.name && value.app) return value;
if (value.name && !value.app) {
value.app = value.name;
return value;
}
if (value.app && !value.name) {
value.name = value.app;
return value;
}
value.name = key;
value.app = key;
return value;
});
}
module.exports = (from, to, by) => {
return (ctx) => {
const clone = _.cloneDeep(ctx);
const fromCtx = toArrayWithArrays(dotty.get(clone, from));
const toCtx = toArrayWithArrays(dotty.get(clone, to));
const diff = _.differenceBy(fromCtx, toCtx, by) || [];
return diff;
};
};