Skip to content

Commit

Permalink
Merge pull request #252 from wildlyinaccurate/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
TehShrike committed Jan 30, 2023
2 parents 4d8537a + eb7066b commit 4eb9cac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function getMergeFunction(key, options) {
function getEnumerableOwnPropertySymbols(target) {
return Object.getOwnPropertySymbols
? Object.getOwnPropertySymbols(target).filter(function(symbol) {
return target.propertyIsEnumerable(symbol)
return Object.propertyIsEnumerable.call(target, symbol)
})
: []
}
Expand Down

0 comments on commit 4eb9cac

Please sign in to comment.