├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── gulpfile.js ├── index.js ├── lib ├── audionode.js ├── definitions.js ├── methods.js └── utils.js ├── package.json └── test ├── chai.js ├── core.js ├── events.js ├── index.html ├── mocha.js ├── model.js └── setup.js /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/index.js -------------------------------------------------------------------------------- /lib/audionode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/lib/audionode.js -------------------------------------------------------------------------------- /lib/definitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/lib/definitions.js -------------------------------------------------------------------------------- /lib/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/lib/methods.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/package.json -------------------------------------------------------------------------------- /test/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/test/chai.js -------------------------------------------------------------------------------- /test/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/test/core.js -------------------------------------------------------------------------------- /test/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/test/events.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/test/index.html -------------------------------------------------------------------------------- /test/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/test/mocha.js -------------------------------------------------------------------------------- /test/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/test/model.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsantell/web-audio-instrumentation/HEAD/test/setup.js --------------------------------------------------------------------------------