audio-effects
Advanced tools
Comparing version 1.0.19 to 1.0.20
{ | ||
"name": "audio-effects", | ||
"version": "1.0.19", | ||
"version": "1.0.20", | ||
"description": "A javascript library to create audio effects using the web-audio-api", | ||
@@ -18,3 +18,6 @@ "main": "src/index.js", | ||
"watch": "webpack --progress", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"build": "BABEL_ENV=production npm run watch", | ||
"prepublish": "npm run build", | ||
"postversion": "git push; git push --tags; npm publish" | ||
}, | ||
@@ -21,0 +24,0 @@ "repository": { |
@@ -153,3 +153,3 @@ # Audio-effects | ||
const tremolo = new Tremolo(audioContext); | ||
tremolo.delay = 1; // Set the speed to 1Hz | ||
tremolo.speed = 1; // Set the speed to 1Hz | ||
``` | ||
@@ -180,3 +180,3 @@ | ||
if (HasGetUserMedia { | ||
if (HasGetUserMedia) { | ||
// The current browser supports getUserMedia. | ||
@@ -183,0 +183,0 @@ } |
72832