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

Commit be82c11

Browse files
committed
Change variable name to be more descriptive in dagnode-stream
1 parent 1566751 commit be82c11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dagnode-stream.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ class DAGNodeStream extends TransformStream {
4141
return callback(err)
4242
}
4343

44-
const dag = {
44+
const result = {
4545
path: obj.Name,
4646
hash: obj.Hash,
4747
size: node.size
4848
}
4949

50-
this.push(dag)
50+
this.push(result)
5151
callback(null)
5252
})
5353
}

0 commit comments

Comments
 (0)