Avoid using export * as namespace

This isn't supported by Safari.
This commit is contained in:
Simon Ser 2021-10-18 23:59:18 +02:00
parent 2d032259db
commit 4309cf44d3

View file

@ -4,4 +4,5 @@ import { h } from "../node_modules/preact/dist/preact.module.js";
import htm from "../node_modules/htm/dist/htm.module.js"; import htm from "../node_modules/htm/dist/htm.module.js";
export const html = htm.bind(h); export const html = htm.bind(h);
export * as linkifyjs from "../node_modules/linkifyjs/dist/linkify.module.js"; import * as linkifyjs from "../node_modules/linkifyjs/dist/linkify.module.js";
export { linkifyjs };