Skip to content

Commit

Permalink
Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
watson committed Dec 2, 2020
1 parent c2c051a commit a0851a4
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions lib/utils.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
'use strict';

const Stream = require('stream');

const Hoek = require('@hapi/hoek');


Expand Down Expand Up @@ -168,17 +166,3 @@ exports.RequestLog = class {
}
}
};


exports.NoOp = class extends Stream.Transform {

constructor() {

super({ objectMode: true });
}

_transform(value, encoding, callback) {

callback(null, value);
}
};

0 comments on commit a0851a4

Please sign in to comment.