@simbi/standardized-audio-context
Version:
A cross-browser implementation of the AudioContext which aims to closely follow the standard.
6 lines • 335 B
JavaScript
export const createAddAudioParamConnections = (audioParamConnectionsStore) => {
return (audioParam, audioParamRenderer) => {
audioParamConnectionsStore.set(audioParam, { activeInputs: new Set(), passiveInputs: new WeakMap(), renderer: audioParamRenderer });
};
};
//# sourceMappingURL=add-audio-param-connections.js.map