UNPKG

drupal-twig-extensions

Version:

JavaScript implementation of Drupal’s Twig extensions

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