From d064dfe8df29c36d88834f58f995c36456427139 Mon Sep 17 00:00:00 2001 From: Alec Winograd Date: Tue, 20 Apr 2021 11:52:40 -0500 Subject: [PATCH] fix trailing spacing --- Libraries/Blob/Blob.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Blob/Blob.js b/Libraries/Blob/Blob.js index 643d49d13c07b9..862c3f50bdcb0f 100644 --- a/Libraries/Blob/Blob.js +++ b/Libraries/Blob/Blob.js @@ -104,7 +104,7 @@ class Blob { return BlobManager.createFromOptions({ blobId: this.data.blobId, offset, - size, + size, /* Since `blob.slice()` creates a new view onto the same binary * data as the original blob, we should re-use the same collector * object so that the underlying resource gets deallocated when