UNPKG

drupal-twig-extensions

Version:

JavaScript implementation of Drupal’s Twig extensions

18 lines (15 loc) 324 B
import newTwigExtension from './newTwigExtension.js'; const newPassThroughExtension = ( extensionName, options = {}, acceptedArguments = [], ) => newTwigExtension( extensionName, function (value) { return value; }, options, acceptedArguments, ); export default newPassThroughExtension;