Skip to content

Commit 6b95454

Browse files
committed
refactor: remove unneeded var
1 parent 6edfcb1 commit 6b95454

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/methods/get.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@ module.exports = async (key, options = {}) => {
5353
}
5454
}
5555

56-
const Bin = new SourceBin(key, binData.data);
57-
58-
return Bin;
56+
return new SourceBin(key, binData.data);
5957
};
6058

6159
class GetError extends Error {

0 commit comments

Comments
 (0)