We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03fe7d3 commit 8a97f90Copy full SHA for 8a97f90
src/math/MathUtils.js
@@ -24,7 +24,8 @@ function generateUUID() {
24
_lut[ d2 & 0x3f | 0x80 ] + _lut[ d2 >> 8 & 0xff ] + '-' + _lut[ d2 >> 16 & 0xff ] + _lut[ d2 >> 24 & 0xff ] +
25
_lut[ d3 & 0xff ] + _lut[ d3 >> 8 & 0xff ] + _lut[ d3 >> 16 & 0xff ] + _lut[ d3 >> 24 & 0xff ];
26
27
- return uuid;
+ // .toLowerCase() here flattens concatenated strings to save heap memory space.
28
+ return uuid.toLowerCase();
29
30
}
31
0 commit comments