Skip to content

Commit

Permalink
fix: adjust default propertyDescriptor object for proxies
Browse files Browse the repository at this point in the history
  • Loading branch information
drusco committed Mar 11, 2024
1 parent 36f31a4 commit 5cc18f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/events/handlers/getOwnPropertyDescriptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ const getOwnPropertyDescriptor = (
}

return {
configurable: false,
configurable: true,
enumerable: true,
writable: false,
writable: true,
value,
};
};
Expand Down

0 comments on commit 5cc18f0

Please sign in to comment.