UNPKG

standardized-audio-context

Version:

A cross-browser wrapper for the Web Audio API which aims to closely follow the standard.

6 lines 268 B
export const interceptConnections = (original, interceptor) => { original.connect = interceptor.connect.bind(interceptor); original.disconnect = interceptor.disconnect.bind(interceptor); return original; }; //# sourceMappingURL=intercept-connections.js.map