UNPKG

drupal-twig-extensions

Version:

JavaScript implementation of Drupal’s Twig extensions

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