mirror of
https://github.com/wishthis/wishthis.git
synced 2026-04-18 13:39:41 -04:00
6 lines
159 B
JavaScript
6 lines
159 B
JavaScript
import Compiler from './compiler';
|
|
export default (node, options) => {
|
|
const compiler = new Compiler(options || {});
|
|
return compiler.compile(node);
|
|
};
|