audio-buffer-list
Advanced tools
Comparing version 1.3.2 to 1.3.3
@@ -234,3 +234,3 @@ /** | ||
start = start || 0 | ||
end = end || this.length | ||
end = end == null ? this.length : end | ||
@@ -242,2 +242,7 @@ if (start < 0) | ||
if (start == end) { | ||
let res = new AudioBufferList([], {context: this.context}) | ||
return res | ||
} | ||
var startOffset = this._offset(start) | ||
@@ -412,3 +417,2 @@ , endOffset = this._offset(end) | ||
middle._bufs = middle._bufs.map(fn) | ||
if (before) middle = before.append(middle) | ||
@@ -415,0 +419,0 @@ if (after) middle = middle.append(after) |
{ | ||
"name": "audio-buffer-list", | ||
"version": "1.3.2", | ||
"version": "1.3.3", | ||
"description": "Data structure for sequence of AudioBuffers", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18446
380