Skip to content

Commit

Permalink
NodeUtils: Simplify getCacheKey(). (#30303)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mugen87 authored Jan 10, 2025
1 parent 81a3069 commit 65d4034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nodes/core/NodeUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export function getCacheKey( object, force = false ) {

for ( const { property, childNode } of getNodeChildren( object ) ) {

values.push( values, cyrb53( property.slice( 0, - 4 ) ), childNode.getCacheKey( force ) );
values.push( cyrb53( property.slice( 0, - 4 ) ), childNode.getCacheKey( force ) );

}

Expand Down

0 comments on commit 65d4034

Please sign in to comment.