UNPKG

@thi.ng/dsp

Version:

Composable signal generators, oscillators, filters, FFT, spectrum, windowing & related DSP utils

12 lines (11 loc) 204 B
import { OnePole } from "./onepole.js"; const dcBlock = (freq) => new DCBlock("lp", freq); class DCBlock extends OnePole { next(x) { return x - super.next(x); } } export { DCBlock, dcBlock };