Skip to content

Commit

Permalink
NVM to the rescue
Browse files Browse the repository at this point in the history
  • Loading branch information
crrobinson14 committed Apr 29, 2016
1 parent 784732f commit bd2f1f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var redefine = require('redefine');
var EventEmitter = require('events');

var Umzug = module.exports = redefine.Class({
extend: EventEmitter.EventEmitter || EventEmitter,
extend: EventEmitter.EventEmitter,

constructor: function (options) {
this.options = _.assign({
Expand All @@ -33,7 +33,7 @@ var Umzug = module.exports = redefine.Class({

this.storage = this._initStorage();

EventEmitter.call(this);
EventEmitter.EventEmitter.call(this);
},

execute: function (options) {
Expand Down

0 comments on commit bd2f1f1

Please sign in to comment.