Skip to content

Commit 51c25a2

Browse files
committed
rebuild
1 parent 96b7dda commit 51c25a2

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

lib/index.js

Lines changed: 12 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ const loadImage = async (url, destination) => {
289289

290290
const streamToBuffer = async stream => {
291291
return new Promise<Buffer>((resolve, reject) => {
292-
let buffers = []
292+
const buffers = []
293293
stream.on('error', reject)
294294
stream.on('data', (data) => buffers.push(data))
295295
stream.on('end', () => {

0 commit comments

Comments
 (0)