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

Commit f81dce5

Browse files
hacdiasdaviddias
authored andcommitted
fix: remove argument from .stats.bw* (#699)
* Update bw-readable-stream.js * Update bw-pull-stream.js
1 parent 12734b6 commit f81dce5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/stats/bw-pull-stream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const transformChunk = require('./bw-util')
66
const deferred = require('pull-defer')
77

88
module.exports = (send) => {
9-
return (hash, opts) => {
9+
return (opts) => {
1010
opts = opts || {}
1111

1212
const p = deferred.source()

src/stats/bw-readable-stream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const pump = require('pump')
55
const transformChunk = require('./bw-util')
66

77
module.exports = (send) => {
8-
return (hash, opts) => {
8+
return (opts) => {
99
opts = opts || {}
1010

1111
const pt = new Stream.Transform({

0 commit comments

Comments
 (0)