Skip to content

Commit

Permalink
fix(database): node5 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilzi authored and Adam Brunner committed Sep 22, 2016
1 parent 92e8551 commit ebd27d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/database/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

class Database {

constructor(mongoose, uri, options = {}) {
constructor(mongoose, uri, options) {
this._mongoose = mongoose;
this._uri = uri;
this._options = options;
this._options = options || {};
}


Expand Down

0 comments on commit ebd27d8

Please sign in to comment.