Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

audio-buffer-list

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

audio-buffer-list - npm Package Compare versions

Comparing version 2.0.4 to 2.0.5

8

index.js

@@ -38,3 +38,3 @@ /**

//AudioBuffer interface
AudioBufferList.prototype.numberOfChannels = 0
AudioBufferList.prototype.numberOfChannels = 2
AudioBufferList.prototype.sampleRate = null

@@ -118,3 +118,3 @@

}
else if (isAudioBuffer(buf)) {
else if (isAudioBuffer(buf) && buf.length) {
this._appendBuffer(buf)

@@ -127,4 +127,4 @@ }

}
//create AudioBuffer from arg
else if (buf != null) {
//create AudioBuffer from (possibly num) arg
else if (buf) {
buf = new AudioBuffer(this.numberOfChannels || 2, buf)

@@ -131,0 +131,0 @@ this._appendBuffer(buf)

{
"name": "audio-buffer-list",
"version": "2.0.4",
"version": "2.0.5",
"description": "Data structure for sequence of AudioBuffers",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc