UNPKG

drupal-twig-extensions

Version:

JavaScript implementation of Drupal’s Twig extensions

9 lines (6 loc) 280 B
import { newTwingFunction } from '../../helpers/twing.js'; import { name, options, acceptedArguments, link } from './definition.js'; export async function callable(...args) { return link(...args); } export default newTwingFunction(name, callable, options, acceptedArguments);