UNPKG

handlebars

Version:

Handlebars provides the power necessary to let you build semantic templates effectively with no frustration

50 lines (41 loc) 1.42 kB
"use strict"; /*globals Handlebars: true */ var Handlebars = require("./handlebars.runtime")["default"]; // Compiler imports var AST = require("./handlebars/compiler/ast")["default"]; var Parser = require("./handlebars/compiler/base").parser; var parse = require("./handlebars/compiler/base").parse; var Compiler = require("./handlebars/compiler/compiler").Compiler; var compile = require("./handlebars/compiler/compiler").compile; var precompile = require("./handlebars/compiler/compiler").precompile; var JavaScriptCompiler = require("./handlebars/compiler/javascript-compiler")["default"]; var _create = Handlebars.create; var create = function() { var hb = _create(); hb.compile = function(input, options) { return compile(input, options, hb); }; hb.precompile = function (input, options) { return precompile(input, options, hb); }; hb.AST = AST; hb.Compiler = Compiler; hb.JavaScriptCompiler = JavaScriptCompiler; hb.Parser = Parser; hb.parse = parse; return hb; }; Handlebars = create(); Handlebars.create = create; /*jshint -W040 */ /* istanbul ignore next */ var root = typeof global !== 'undefined' ? global : window, $Handlebars = root.Handlebars; /* istanbul ignore next */ Handlebars.noConflict = function() { if (root.Handlebars === Handlebars) { root.Handlebars = $Handlebars; } }; Handlebars['default'] = Handlebars; exports["default"] = Handlebars;