5 lines
238 B
JavaScript
5 lines
238 B
JavaScript
import { evaluate as _evaluate } from '@strudel/core';
|
|
import { transpiler } from './transpiler.mjs';
|
|
export * from './transpiler.mjs';
|
|
|
|
export const evaluate = (code, transpilerOptions) => _evaluate(code, transpiler, transpilerOptions);
|