UNPKG

drupal-twig-extensions

Version:

JavaScript implementation of Drupal’s Twig extensions

13 lines (10 loc) 292 B
import { TwingFilter } from 'twing'; const newTwingFilter = (name, callable, options, acceptedArguments = []) => new TwingFilter( name, callable, // @TODO File bug report; 3rd argument should be options. acceptedArguments, options, ); export default newTwingFilter;