-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
38 lines (29 loc) · 1005 Bytes
/
index.js
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
31
32
33
34
35
36
37
38
'use strict';
var typeOf = require('typeof');
var cloneDeep = require('lodash.clonedeep');
var assign = require('lodash.assign');
var isPlainObject = require('is-plain-object');
var forEach = require('deep-for-each');
var jsdiff = require('diff');
function mapToType(value, options) {
options = assign({
typeMapper: null,
}, options);
value = cloneDeep(value);
forEach(value, function (value, prop, subject, path) {
var type = options.typeMapper && options.typeMapper(path, value, prop, subject);
if (type) {
subject[prop] = '<' + type + '>';
} else if (!Array.isArray(value) && !isPlainObject(value)) {
subject[prop] = '<' + typeOf(value) + '>';
}
});
return value;
}
function diff(oldObj, newObj, options) {
oldObj = mapToType(oldObj, options);
newObj = mapToType(newObj, options);
return jsdiff.diffJson(oldObj, newObj, options);
}
module.exports = diff;
module.exports.mapToType = mapToType;