Fixes #39 use return when hot-reload is enabled

This commit is contained in:
Patrick Steele-Idem 2015-02-26 10:17:10 -07:00
parent d5b64a8661
commit 1fd4386f78

View File

@ -35,7 +35,7 @@ exports.enable = function() {
}
}
oldMethod.apply(this, arguments);
return oldMethod.apply(this, arguments);
};
}
});