Skip to content

Commit a69eba7

Browse files
committed
lint (WIP)
1 parent b469017 commit a69eba7

File tree

3 files changed

+327
-56
lines changed

3 files changed

+327
-56
lines changed

src/gridfs/upload.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ function handleError(stream: GridFSBucketWriteStream, error: Error, callback: Ca
233233
console.log('callback threw:', e);
234234
throw e;
235235
}
236-
}
236+
};
237237
if (stream.state.errored) {
238238
process.nextTick(cb);
239239
return;
@@ -343,7 +343,7 @@ function checkDone(stream: GridFSBucketWriteStream, callback: Callback): void {
343343
callback();
344344
},
345345
error => {
346-
console.log('got error in checkDone\'s insertOne');
346+
console.log("got error in checkDone's insertOne");
347347
return handleError(stream, error, callback);
348348
}
349349
);

0 commit comments

Comments
 (0)