Transform htm tagged templates into h function calls using acorn
npm install htm-transformTransform htm tagged templates into normal h function calls.
A small alternative to babel-plugin-htm that doesn't depend on Babel.
``js
import transform from "htm-transform";
const result = transform("const hyperscript = html
;");
console.assert(result === const hyperscript = h("h1", { id: "hello" }, "Hello world!"));
``