Browse Source

Correct unterminated string #455

Ben Hsieh 7 years ago
parent
commit
55009f1482
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      polyfill/Blob.js

+ 1
- 1
polyfill/Blob.js View File

@@ -286,7 +286,7 @@ export default class Blob extends EventTarget {
286 286
 
287 287
   safeClose() {
288 288
     if(this._closed)
289
-      return Promise.reject('Blob has been released.)
289
+      return Promise.reject('Blob has been released.')
290 290
     this._closed = true
291 291
     if(!this._isReference) {
292 292
       return fs.unlink(this._ref).catch((err) => {