From cd0aec9e9163e4e9fe922b2f51b63ad3f62b4bc8 Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Wed, 10 Oct 2012 15:49:00 -0700 Subject: [PATCH] fix component. Closes #24 --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index ac91460..e02c13b 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,5 @@ if ('undefined' == typeof window) { - module.exports = require('./debug'); -} else { module.exports = require('./lib/debug'); +} else { + module.exports = require('./debug'); }