Skip to content

Commit

Permalink
Update lib/node_modules/@stdlib/utils/some-in-by/lib/main.js
Browse files Browse the repository at this point in the history
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
  • Loading branch information
Planeshifter authored Feb 29, 2024
1 parent 4e6745e commit 3c30198
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/utils/some-in-by/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function someInBy( obj, n, predicate, thisArg ) {
}
count = 0;
for ( key in obj ) {
if (
if (
Object.prototype.hasOwnProperty.call( obj, key ) ||
Object.prototype.hasOwnProperty.call( Object.getPrototypeOf( obj ), key )
) {
Expand Down

0 comments on commit 3c30198

Please sign in to comment.