From 4309cf44d35ca5a08060f1701611d7c4f173101a Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 18 Oct 2021 23:59:18 +0200 Subject: [PATCH] Avoid using `export * as namespace` This isn't supported by Safari. --- lib/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index 61fb016..1b480b3 100644 --- a/lib/index.js +++ b/lib/index.js @@ -4,4 +4,5 @@ import { h } from "../node_modules/preact/dist/preact.module.js"; import htm from "../node_modules/htm/dist/htm.module.js"; 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 };