Skip to content

Commit 501b9ce

Browse files
committed
added semicolons
1 parent 1c22785 commit 501b9ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

speech-to-text/recognize-file.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ module.exports = function recognizeFile(options) {
116116
// new behavior https://github.com/bergos/nodeify-fetch/blob/v2.2.2/lib/patchResponse.js
117117
// seems like we just have to check if the body is readable
118118
if (response.body.readable) {
119-
return response.body
119+
return response.body;
120120
} else {
121-
return new Error("file is not a readable stream")
121+
return new Error("file is not a readable stream");
122122
}
123123
})
124124
.then(function(source) {

0 commit comments

Comments
 (0)