Skip to content

Commit

Permalink
Fix for reserved keyword "default"
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Irwin committed Dec 31, 2013
1 parent f2df220 commit 641358a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

// var local = handlebars.create();

var handlebars = require('../dist/cjs/handlebars').default;
var handlebars = require('../dist/cjs/handlebars')["default"];

handlebars.Visitor = require('../dist/cjs/handlebars/compiler/visitor').default;
handlebars.Visitor = require('../dist/cjs/handlebars/compiler/visitor')["default"];

var printer = require('../dist/cjs/handlebars/compiler/printer');
handlebars.PrintVisitor = printer.PrintVisitor;
Expand Down

0 comments on commit 641358a

Please sign in to comment.