mirror of
https://github.com/wishthis/wishthis.git
synced 2025-12-26 08:48:18 -05: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);
|
|
};
|