tone 15.1.18 → 15.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Tone/component/filter/Filter.ts +1 -0
- package/Tone/version.ts +1 -1
- package/build/Tone.js +1 -1
- package/build/Tone.js.map +1 -1
- package/build/esm/component/filter/Filter.js +1 -0
- package/build/esm/component/filter/Filter.js.map +1 -1
- package/build/esm/version.js +1 -1
- package/package.json +1 -1
|
@@ -191,6 +191,7 @@ export class Filter extends ToneAudioNode<FilterOptions> {
|
|
|
191
191
|
*/
|
|
192
192
|
getFrequencyResponse(len = 128): Float32Array {
|
|
193
193
|
const filterClone = new BiquadFilter({
|
|
194
|
+
context: this.context,
|
|
194
195
|
frequency: this.frequency.value,
|
|
195
196
|
gain: this.gain.value,
|
|
196
197
|
Q: this.Q.value,
|
package/Tone/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version: string = "15.1.
|
|
1
|
+
export const version: string = "15.1.19";
|