@thi.ng/dsp 4.7.101 → 4.7.102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/biquad.js +2 -2
- package/package.json +10 -9
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 214 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
package/biquad.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { unsupportedOp } from "@thi.ng/errors/unsupported";
|
|
2
2
|
import { PI, SQRT2, SQRT2_2 } from "@thi.ng/math/api";
|
|
3
3
|
import { clamp05 } from "@thi.ng/math/interval";
|
|
4
4
|
import { AProc } from "./aproc.js";
|
|
@@ -179,7 +179,7 @@ class Biquad extends AProc {
|
|
|
179
179
|
break;
|
|
180
180
|
}
|
|
181
181
|
default:
|
|
182
|
-
|
|
182
|
+
unsupportedOp(`invalid filter type: ${this._type}`);
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
185
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/dsp",
|
|
3
|
-
"version": "4.7.
|
|
3
|
+
"version": "4.7.102",
|
|
4
4
|
"description": "Composable signal generators, oscillators, filters, FFT, spectrum, windowing & related DSP utils",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "https://github.com/thi-ng/umbrella.git"
|
|
11
|
+
"url": "git+https://github.com/thi-ng/umbrella.git",
|
|
12
|
+
"directory": "packages/dsp"
|
|
12
13
|
},
|
|
13
14
|
"homepage": "https://thi.ng/dsp",
|
|
14
15
|
"funding": [
|
|
@@ -40,12 +41,12 @@
|
|
|
40
41
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
42
|
},
|
|
42
43
|
"dependencies": {
|
|
43
|
-
"@thi.ng/api": "^8.12.
|
|
44
|
-
"@thi.ng/checks": "^3.8.
|
|
45
|
-
"@thi.ng/errors": "^2.6.
|
|
46
|
-
"@thi.ng/math": "^5.15.
|
|
47
|
-
"@thi.ng/random": "^4.1.
|
|
48
|
-
"@thi.ng/transducers": "^9.6.
|
|
44
|
+
"@thi.ng/api": "^8.12.14",
|
|
45
|
+
"@thi.ng/checks": "^3.8.4",
|
|
46
|
+
"@thi.ng/errors": "^2.6.3",
|
|
47
|
+
"@thi.ng/math": "^5.15.3",
|
|
48
|
+
"@thi.ng/random": "^4.1.39",
|
|
49
|
+
"@thi.ng/transducers": "^9.6.23"
|
|
49
50
|
},
|
|
50
51
|
"devDependencies": {
|
|
51
52
|
"esbuild": "^0.27.2",
|
|
@@ -292,5 +293,5 @@
|
|
|
292
293
|
"year": 2015,
|
|
293
294
|
"screenshot": "dsp/dsf-allpass1.png"
|
|
294
295
|
},
|
|
295
|
-
"gitHead": "
|
|
296
|
+
"gitHead": "4bd1b9d8ae52ba32b90a1b9a55d329c708ca7865\n"
|
|
296
297
|
}
|