Sha256: 8da9e31fd351502b45eee5290a332d39e8598e029b18f97d6eeecdd21891ffd7

Contents?: true

Size: 1.1 KB

Versions: 69

Compression:

Stored size: 1.1 KB

Contents

"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;

Handlebars['default'] = Handlebars;

exports["default"] = Handlebars;

Version data entries

69 entries across 69 versions & 2 rubygems

Version Path
trusty-festivity-extension-2.3.21 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.20 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.19 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.18 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.17 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.16 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.15 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.14 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.13 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.12 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.11g node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.10 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.9 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.8 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.7 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.6 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.5 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.4 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.3 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js
trusty-festivity-extension-2.3.2 node_modules/bower/node_modules/handlebars/dist/cjs/handlebars.js