Sha256: 424c05bb897d6210f62308722859616a5ea6d706bdd7fbd5f61c6f85d5ce2df6

Contents?: true

Size: 898 Bytes

Versions: 69

Compression:

Stored size: 898 Bytes

Contents

/*globals Handlebars: true */
import Handlebars from "./handlebars.runtime";

// Compiler imports
import AST from "./handlebars/compiler/ast";
import { parser as Parser, parse } from "./handlebars/compiler/base";
import { Compiler, compile, precompile } from "./handlebars/compiler/compiler";
import JavaScriptCompiler from "./handlebars/compiler/javascript-compiler";

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;

Handlebars['default'] = Handlebars;

export default Handlebars;

Version data entries

69 entries across 69 versions & 2 rubygems

Version Path
trusty-festivity-extension-2.5.3 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.5.2 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.5.1 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.5.0 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.4.6 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.4.5 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.4.4 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.4.3 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.4.2 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.4.1 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.4.0 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.3.30 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.3.29 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.3.28 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.3.27 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.3.26 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.3.25 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.3.24 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.3.23 node_modules/bower/node_modules/handlebars/lib/handlebars.js
trusty-festivity-extension-2.3.22 node_modules/bower/node_modules/handlebars/lib/handlebars.js