summaryrefslogtreecommitdiffstats
path: root/lib/handlebars/utils.js
diff options
context:
space:
mode:
authorwycats <wycats@gmail.com>2010-12-29 18:21:43 -0800
committerwycats <wycats@gmail.com>2010-12-29 18:21:43 -0800
commitbf6c74aa83e6ce32da30b1602bcafc025306ba4d (patch)
treeda3788539e0f8168140542d58f6977eef5e706c2 /lib/handlebars/utils.js
parent9e77799e87fbb85dcc6f6f19ebc57f9dcdfdcb6a (diff)
downloadhandlebars.js-bf6c74aa83e6ce32da30b1602bcafc025306ba4d.zip
handlebars.js-bf6c74aa83e6ce32da30b1602bcafc025306ba4d.tar.gz
handlebars.js-bf6c74aa83e6ce32da30b1602bcafc025306ba4d.tar.bz2
Restructure things more simply
Diffstat (limited to 'lib/handlebars/utils.js')
-rw-r--r--lib/handlebars/utils.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/handlebars/utils.js b/lib/handlebars/utils.js
index d579c0b..409a489 100644
--- a/lib/handlebars/utils.js
+++ b/lib/handlebars/utils.js
@@ -1,4 +1,4 @@
-var Handlebars = {};
+var Handlebars = require("handlebars");
// BEGIN(BROWSER)
Handlebars.Exception = function(message) {
@@ -56,6 +56,3 @@ Handlebars.SafeString.prototype.toString = function() {
})();
// END(BROWSER)
-exports.Utils = Handlebars.Utils;
-exports.SafeString = Handlebars.SafeString;
-exports.Exception = Handlebars.Exception;