Removed console log

This commit is contained in:
Lewis Diamond 2019-12-02 16:17:27 -05:00
parent a45a144854
commit 57645c68da

View File

@ -10,7 +10,6 @@ export function rate(
const deltaMS = ((1 / targetRate) * 1000) / period; // Skip a full period
let total = 0;
const start = performance.now();
console.log(options);
return new Transform({
...options,
async transform(data, encoding, callback) {