UNPKG

drupal-twig-extensions

Version:

JavaScript implementation of Drupal’s Twig extensions

14 lines (11 loc) 238 B
/** * @file The trans filter * * @see The t filter for docs. * * ``` * new TwigFilter('trans', 't', ['is_safe' => ['html']]) * ``` */ export const name = 'trans'; export { options, acceptedArguments } from '../t/definition.js';