(id: string)
| 37 | } |
| 38 | |
| 39 | export function removeAudioNode(id: string) { |
| 40 | const node = nodes.get(id); |
| 41 | |
| 42 | node.disconnect(); |
| 43 | node.stop?.(); |
| 44 | |
| 45 | nodes.delete(id); |
| 46 | } |
| 47 | |
| 48 | export function connect(sourceId: string, targetId: string) { |
| 49 | const source = nodes.get(sourceId); |
nothing calls this directly
no outgoing calls
no test coverage detected