diff options
author | Yehuda Katz <wycats@gmail.com> | 2013-07-16 19:10:37 +0000 |
---|---|---|
committer | Yehuda Katz <wycats@gmail.com> | 2013-07-16 19:10:37 +0000 |
commit | da130f7745fc338d7ea31c60d9954ab6e0e1511a (patch) | |
tree | 0f6d2560cab472cb896bd444093f610dc328d617 /lib/handlebars/compiler/printer.js | |
parent | 12f8299eb25e605d825f96f50599fc3851c9d8ec (diff) | |
download | handlebars.js-da130f7745fc338d7ea31c60d9954ab6e0e1511a.zip handlebars.js-da130f7745fc338d7ea31c60d9954ab6e0e1511a.tar.gz handlebars.js-da130f7745fc338d7ea31c60d9954ab6e0e1511a.tar.bz2 |
Building an AMD file
Diffstat (limited to 'lib/handlebars/compiler/printer.js')
-rw-r--r-- | lib/handlebars/compiler/printer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/compiler/printer.js b/lib/handlebars/compiler/printer.js index 6b72c25..c6e08bb 100644 --- a/lib/handlebars/compiler/printer.js +++ b/lib/handlebars/compiler/printer.js @@ -1,6 +1,6 @@ import Visitor from "handlebars/compiler/visitor"; -export print = function(ast) { +export function print(ast) { return new PrintVisitor().accept(ast); }; |