UNPKG

@christianwiedemann/drupal-twig-extensions

Version:

JavaScript implementation of Drupal’s Twig extensions

14 lines (11 loc) 305 B
import { newTwingFunction } from '../../helpers/twing.js'; import { name, options, acceptedArguments, createAttribute, } from './definition.js'; export function callable(...args) { return createAttribute(...args); } export default newTwingFunction(name, callable, options, acceptedArguments);