Skip to content

Commit

Permalink
Merge pull request #100 from jordansexton/patch-1
Browse files Browse the repository at this point in the history
Thanks, looks good!
  • Loading branch information
Joshua Bellamy-Henn committed Mar 3, 2016
2 parents 78be6b1 + 8efd775 commit 049d4a9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ var Revisioner = require('./revisioner');
var RevAll = (function () {

var RevAll = function (options) {

if (!(this instanceof RevAll)) {
return new RevAll(options);
}

this.revisioner = new Revisioner(options);

Expand Down

0 comments on commit 049d4a9

Please sign in to comment.