mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 21:58:37 +00:00
6 lines
200 B
JavaScript
6 lines
200 B
JavaScript
import { evaluate as _evaluate } from '@strudel/core';
|
|
import { transpiler } from './transpiler.mjs';
|
|
export * from './transpiler.mjs';
|
|
|
|
export const evaluate = (code) => _evaluate(code, transpiler);
|