Sha256: bbe48cead9880eed78d58f4e5485d581aede0838a746b9127c9032524b681e0e

Contents?: true

Size: 443 Bytes

Versions: 5

Compression:

Stored size: 443 Bytes

Contents

import Exception from '../exception';

export default function(instance) {
  instance.registerHelper('helperMissing', function(/* [args, ]options */) {
    if (arguments.length === 1) {
      // A missing field in a {{foo}} construct.
      return undefined;
    } else {
      // Someone is actually trying to call something, blow up.
      throw new Exception('Missing helper: "' + arguments[arguments.length - 1].name + '"');
    }
  });
}

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
locomotivecms-4.0.0.alpha1 app/javascript/node_modules/handlebars/lib/handlebars/helpers/helper-missing.js
locomotivecms-3.4.0 app/javascript/node_modules/handlebars/lib/handlebars/helpers/helper-missing.js
lanes-0.8.0 node_modules/handlebars/lib/handlebars/helpers/helper-missing.js
eslint_node_modules-1.6.0.1 vendor/node_modules/eslint/node_modules/handlebars/lib/handlebars/helpers/helper-missing.js
eslint_node_modules-1.6.0 vendor/node_modules/eslint/node_modules/handlebars/lib/handlebars/helpers/helper-missing.js