handlebars-to-ecmascript
v0.0.4
Published
Precompile templates to pure ecmascript
Downloads
11
Readme
Highly experimental
Proof of concept
Turns a template
Hello {{world}}!
into a ecmascript module
export function render(data1) {
return 'Hello ' + data1.world + '!';
};
License
This project is licensed under MIT.