mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 13:53:22 +02:00
Fix all JSHint complaints in Node.js code.
This commit is contained in:
@@ -27,7 +27,7 @@ module.exports.readAll = function(stream) {
|
||||
|
||||
function readableListener() {
|
||||
var chunk;
|
||||
while (chunk = stream.read()) {
|
||||
while ((chunk = stream.read())) {
|
||||
collected = Buffer.concat([collected, chunk])
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user