drupal-twig-extensions
Version:
JavaScript implementation of Drupal’s Twig extensions
12 lines (11 loc) • 408 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exports.callable = void 0;
var _twig = require("../../helpers/twig.cjs");
var _definition = require("./definition.cjs");
const callable = _definition.renderVar;
exports.callable = callable;
var _default = (0, _twig.newTwigExtension)(_definition.name, callable, _definition.options);
exports.default = _default;