Skip to content

Commit 65d4034

Browse files
authored
NodeUtils: Simplify getCacheKey(). (mrdoob#30303)
1 parent 81a3069 commit 65d4034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nodes/core/NodeUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export function getCacheKey( object, force = false ) {
9595

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

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

100100
}
101101

0 commit comments

Comments
 (0)