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
 
286
 
287
   safeClose() {
287
   safeClose() {
288
     if(this._closed)
288
     if(this._closed)
289
-      return Promise.reject('Blob has been released.)
289
+      return Promise.reject('Blob has been released.')
290
     this._closed = true
290
     this._closed = true
291
     if(!this._isReference) {
291
     if(!this._isReference) {
292
       return fs.unlink(this._ref).catch((err) => {
292
       return fs.unlink(this._ref).catch((err) => {