UNPKG

drupal-twig-extensions

Version:

JavaScript implementation of Drupal’s Twig extensions

9 lines (6 loc) 256 B
import { newTwigExtension } from '../../helpers/twig.js'; import { name, options, without } from './definition.js'; export function callable(element, args) { return without(element, ...args); } export default newTwigExtension(name, callable, options);