mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-11 13:48:34 +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);
|