Skip to content
This repository has been archived by the owner on Mar 16, 2019. It is now read-only.

Commit

Permalink
Correct unterminated string #455
Browse files Browse the repository at this point in the history
  • Loading branch information
wkh237 authored Aug 3, 2017
1 parent 50c1573 commit 55009f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polyfill/Blob.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down

0 comments on commit 55009f1

Please sign in to comment.