From 55009f148288f6471e7e084db3881bbdd1d7d98a Mon Sep 17 00:00:00 2001 From: Ben Hsieh Date: Thu, 3 Aug 2017 09:34:37 +0800 Subject: [PATCH] Correct unterminated string #455 --- polyfill/Blob.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polyfill/Blob.js b/polyfill/Blob.js index a91a897b6..53662a798 100644 --- a/polyfill/Blob.js +++ b/polyfill/Blob.js @@ -286,7 +286,7 @@ export default class Blob extends EventTarget { safeClose() { if(this._closed) - return Promise.reject('Blob has been released.) + return Promise.reject('Blob has been released.') this._closed = true if(!this._isReference) { return fs.unlink(this._ref).catch((err) => {