UNPKG

@christianwiedemann/drupal-twig-extensions

Version:

JavaScript implementation of Drupal’s Twig extensions

21 lines (20 loc) 468 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.options = exports.name = exports.acceptedArguments = void 0; const name = 'set_attribute'; exports.name = name; const options = { needs_environment: true, is_safe: ['html'] }; exports.options = options; const acceptedArguments = [{ name: 'attributeName', defaultValue: '' }, { name: 'attributeValue', defaultValue: '' }]; exports.acceptedArguments = acceptedArguments;