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

Commit 55009f1

Browse files
authored
Correct unterminated string #455
1 parent 50c1573 commit 55009f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

polyfill/Blob.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ export default class Blob extends EventTarget {
286286

287287
safeClose() {
288288
if(this._closed)
289-
return Promise.reject('Blob has been released.)
289+
return Promise.reject('Blob has been released.')
290290
this._closed = true
291291
if(!this._isReference) {
292292
return fs.unlink(this._ref).catch((err) => {

0 commit comments

Comments
 (0)