Skip to content

Commit

Permalink
r0b08x [chore] 3/8/2024, 4:19:40 PM
Browse files Browse the repository at this point in the history
  • Loading branch information
p3x-robot committed Mar 8, 2024
1 parent cc8390f commit 21fa8cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/clone.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function customizer(value) {
if (isObject(value)) {
// Remove keys that start with '$'
return transform(value, (result, val, key) => {
if (!key.startsWith('$')) {
if (key !== '$$hashKey') {
result[key] = val;
}
});
Expand Down

0 comments on commit 21fa8cd

Please sign in to comment.