shareon/src/index.js

9 lines
151 B
JavaScript
Raw Normal View History

2022-02-10 17:02:50 -05:00
import { init } from "./shareon";
2020-07-23 05:13:21 -04:00
2022-02-10 14:32:40 -05:00
const s = document.currentScript;
if (s && s.hasAttribute("init")) {
2022-02-10 17:02:50 -05:00
init();
2022-02-10 14:32:40 -05:00
}
2020-07-23 05:13:21 -04:00
2022-02-10 17:02:50 -05:00
export { init } from "./shareon";