UNPKG

pizzicato-40hz

Version:

A web-audio library to simplify using and manipulating sounds.

22 lines (17 loc) 328 B
Pizzicato.Effects = {}; var baseEffect = Object.create(null, { connect: { enumerable: true, value: function(audioNode) { this.outputNode.connect(audioNode); return this; } }, disconnect: { enumerable: true, value: function(audioNode) { this.outputNode.disconnect(audioNode); return this; } } });