/** * Common output stage * @module lib/output.js; */ import Tone from "tone"; let output = null; export function getOutput() { if (!output) output = makeOutput(); return output; } function makeOutput() { const compressor = new Tone.Compressor(-30, 3); const gain = new Tone.Gain(0.3); compressor.connect(gain); gain.toMaster(); return compressor; }