get rid of instanceof hack in application constructor

master
Tejas Manohar 2015-10-13 02:17:47 -05:00
parent c06d30286f
commit 132b32b287
1 changed files with 0 additions and 1 deletions

View File

@ -39,7 +39,6 @@ module.exports = class Application extends Emitter {
constructor() {
super();
if (!(this instanceof Application)) return new Application;
this.env = process.env.NODE_ENV || 'development';
this.subdomainOffset = 2;
this.middleware = [];