We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 803fb14 commit 9386e97Copy full SHA for 9386e97
index.js
@@ -123,13 +123,10 @@ WriteRequest.prototype.makeWriter = function () {
123
self.writer = writer
124
125
writer.onwriteend = function () {
126
- if (self.writer !== writer) throw new Error('nah')
127
self.onwrite(null)
128
}
129
130
writer.onerror = function (err) {
131
132
- console.log('ONERROR', arguments)
133
self.onwrite(err)
134
135
@@ -152,7 +149,6 @@ WriteRequest.prototype.onwrite = function (err) {
152
149
153
150
154
151
this.pool.push(this)
155
- if (err) console.log('ERROR HERE', err)
156
req.callback(err, null)
157
158
0 commit comments