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