Dan Kaplun 7 年之前
父节点
当前提交
77d308fa36
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/math/Math.js

+ 1 - 1
src/math/Math.js

@@ -31,7 +31,7 @@ var _Math = {
 				lut[ d2 & 0x3f | 0x80 ] + lut[ d2 >> 8 & 0xff ] + '-' + lut[ d2 >> 16 & 0xff ] + lut[ d2 >> 24 & 0xff ] +
 				lut[ d3 & 0xff ] + lut[ d3 >> 8 & 0xff ] + lut[ d3 >> 16 & 0xff ] + lut[ d3 >> 24 & 0xff ];
 
-			// .toUpperCase() here flattens concatenated strings to save heap memory space. 
+			// .toUpperCase() here flattens concatenated strings to save heap memory space.
 			return uuid.toUpperCase();
 
 		};