File tree Expand file tree Collapse file tree 3 files changed +46
-0
lines changed Expand file tree Collapse file tree 3 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 2
2
examples /audio
3
3
.project
4
4
* ~
5
+ .idea
Original file line number Diff line number Diff line change @@ -2300,3 +2300,23 @@ Reverb.prototype.process = function (interleavedSamples){
2300
2300
return outputSamples ;
2301
2301
} ;
2302
2302
2303
+ if ( module && typeof module . exports !== 'undefined' ) {
2304
+ module . exports = {
2305
+ DSP : DSP ,
2306
+ DFT : DFT ,
2307
+ FFT : FFT ,
2308
+ RFFT : RFFT ,
2309
+ Sampler : Sampler ,
2310
+ Oscillator : Oscillator ,
2311
+ ADSR : ADSR ,
2312
+ IIRFilter : IIRFilter ,
2313
+ IIRFilter2 : IIRFilter2 ,
2314
+ WindowFunction : WindowFunction ,
2315
+ sinh : sinh ,
2316
+ Biquad : Biquad ,
2317
+ GraphicalEq : GraphicalEq ,
2318
+ MultiDelay : MultiDelay ,
2319
+ SingleDelay : SingleDelay ,
2320
+ Reverb : Reverb
2321
+ } ;
2322
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " dsp.js" ,
3
+ "version" : " 1.0.0" ,
4
+ "description" : " Digital Signal Processing for Javascript http://weare.buildingsky.net"
AC9A
,
5
+ "main" : " dsp.js" ,
6
+ "directories" : {
7
+ "example" : " examples" ,
8
+ "test" : " test"
9
+ },
10
+ "repository" : {
11
+ "type" : " git" ,
12
+ "url" : " git+https://github.com/corbanbrook/dsp.js.git"
13
+ },
14
+ "keywords" : [
15
+ " dsp" ,
16
+ " dft" ,
17
+ " fft"
18
+ ],
19
+ "author" : " Corban Brook" ,
20
+ "license" : " MIT" ,
21
+ "bugs" : {
22
+ "url" : " https://github.com/corbanbrook/dsp.js/issues"
23
+ },
24
+ "homepage" : " https://github.com/corbanbrook/dsp.js#readme"
25
+ }
You can’t perform that action at this time.
0 commit comments