Skip to content

Commit

Permalink
lint lpcm16
Browse files Browse the repository at this point in the history
  • Loading branch information
bugsounet committed Nov 16, 2024
1 parent 5d72a91 commit b12e82a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions components/lpcm16.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

"use strict";

/* eslint-disable max-lines-per-function */

const spawn = require("child_process").spawn;

let log = () => { /* do nothing */ };
Expand Down Expand Up @@ -152,7 +150,7 @@ class LPCM16 {
return this.afterCallback(data.toString());

});
this.cp.on("exit", (code, signal) => {
this.cp.on("exit", (code) => {
this.stream.destroy();
this.afterCallback(null, code);
});
Expand Down

0 comments on commit b12e82a

Please sign in to comment.