Skip to content

Commit

Permalink
remove unused dependency, add unsupported method
Browse files Browse the repository at this point in the history
  • Loading branch information
psirenny committed Jan 5, 2015
1 parent a2ef383 commit ae6e47a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ Recorder.prototype.stop = function (callback) {
return this;
};

Recorder.prototype.unsupported = function () {
return !this.strategy;
};

Recorder.prototype.use = function (strategy, callback) {
var self = this;
if (this.strategy) return this;
Expand Down
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
"bugs": {
"url": "https://github.com/psirenny/audio-recorder/issues"
},
"dependencies": {
"chainit": "*"
},
"description": "An extensible audio recorder.",
"keywords": [
"audio",
Expand All @@ -23,5 +20,5 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"version": "0.7.0"
"version": "0.8.0"
}

0 comments on commit ae6e47a

Please sign in to comment.