UNPKG

vite-plugin-twing-drupal

Version:

Provides a ⚡️ Vite plugin to transform 🌱 Twing.js into HTML with a 💧 Drupal flavour

13 lines (11 loc) 314 B
import { createSynchronousFunction } from "twing" /** * Simple test function. */ function testFunction() { return "IT WORKS!" } export function initEnvironment(twingEnvironment, config = {}) { const func = createSynchronousFunction('testFunction', testFunction, []); twingEnvironment.addFunction(func); }