shareon-pulsanti-condivisio.../src/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
151 B
JavaScript
Raw Normal View History

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