Skip to content

Commit e2b5b86

Browse files
author
Phillip Clark
authored
Merge pull request #137 from ioxua-os/master
Adds support to diff objects with symbol keys Another great contribution. Thanks! It is crazy how long it took me to notice this one... just shows how infrequently I get back to this library.
2 parents 9592407 + d5acfbb commit e2b5b86

File tree

3 files changed

+547
-505
lines changed

3 files changed

+547
-505
lines changed

index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,8 @@
246246
deepDiff(lhs[i], rhs[i], changes, prefilter, currentPath, i, stack, orderIndependent);
247247
}
248248
} else {
249-
var akeys = Object.keys(lhs);
250-
var pkeys = Object.keys(rhs);
249+
var akeys = Object.keys(lhs).concat(Object.getOwnPropertySymbols(lhs));
250+
var pkeys = Object.keys(rhs).concat(Object.getOwnPropertySymbols(rhs));
251251
for (i = 0; i < akeys.length; ++i) {
252252
k = akeys[i];
253253
other = pkeys.indexOf(k);

0 commit comments

Comments
 (0)