Skip to content

Commit

Permalink
Merge pull request #779 from montoyamoraga/main
Browse files Browse the repository at this point in the history
lint
  • Loading branch information
montoyamoraga authored May 5, 2023
2 parents cd9811e + e4f531d commit dc10c4b
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 141 deletions.
236 changes: 100 additions & 136 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"grunt-open": "^0.2.4",
"grunt-webpack": "^3.1.3",
"mocha": "^10.2.0",
"prettier": "2.0.5",
"raw-loader": "^3.1.0",
"prettier": "^2.8.8",
"raw-loader": "^4.0.2",
"tslint-config-prettier": "^1.18.0",
"uglify-loader": "^3.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
Expand Down
5 changes: 2 additions & 3 deletions src/audioWorklet/recorderProcessor.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,8 @@ class RecorderProcessor extends AudioWorkletProcessor {
this.inputRingBuffer.pull(this.inputRingBufferArraySequence);

for (let channel = 0; channel < this.numOutputChannels; ++channel) {
const inputChannelCopy = this.inputRingBufferArraySequence[
channel
].slice();
const inputChannelCopy =
this.inputRingBufferArraySequence[channel].slice();
if (channel === 0) {
this.leftBuffers.push(inputChannelCopy);
if (this.numInputChannels === 1) {
Expand Down

0 comments on commit dc10c4b

Please sign in to comment.