Skip to content

Commit

Permalink
Remove doublequotes
Browse files Browse the repository at this point in the history
  • Loading branch information
pcprince committed Mar 7, 2024
1 parent f745174 commit 3c55f06
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/wavReader.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ function readChunk (state, id) {

function showWAVFormat (wavFormat) {

console.log("Number of channel:", wavFormat.numberOfChannels);
console.log("Bytes per second:", wavFormat.bytesPerSecond);
console.log("Bytes per capture:", wavFormat.bytesPerCapture);
console.log("Bits per sample:", wavFormat.bitsPerSample);
console.log('Number of channel:', wavFormat.numberOfChannels);
console.log('Bytes per second:', wavFormat.bytesPerSecond);
console.log('Bytes per capture:', wavFormat.bytesPerCapture);
console.log('Bits per sample:', wavFormat.bitsPerSample);

}

Expand Down

0 comments on commit 3c55f06

Please sign in to comment.