Browse Source

Fix format

Temdog007 6 years ago
parent
commit
bbb1105c01
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/core/BufferAttribute.js

+ 2 - 1
src/core/BufferAttribute.js

@@ -321,7 +321,7 @@ Object.assign( BufferAttribute.prototype, {
 
 	},
 
-	toJSON: function() {
+	toJSON: function () {
 
 		return {
 			itemSize: this.itemSize,
@@ -329,6 +329,7 @@ Object.assign( BufferAttribute.prototype, {
 			array: Array.prototype.slice.call( this.array ),
 			normalized: this.normalized
 		};
+
 	}
 
 } );