diff options
Diffstat (limited to 'spec/expected/empty.amd.js')
-rw-r--r-- | spec/expected/empty.amd.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/expected/empty.amd.js b/spec/expected/empty.amd.js new file mode 100644 index 0000000..657970c --- /dev/null +++ b/spec/expected/empty.amd.js @@ -0,0 +1,11 @@ +define(['handlebars.runtime'], function(Handlebars) { + Handlebars = Handlebars["default"]; var template = Handlebars.template, templates = Handlebars.templates = Handlebars.templates || {}; +return templates['empty'] = template(function (Handlebars,depth0,helpers,partials,data) { + this.compilerInfo = [4,'>= 1.0.0']; +helpers = this.merge(helpers, Handlebars.helpers); data = data || {}; + var buffer = ""; + + + return buffer; + }); +}); |