UNPKG

tav-ui

Version:
19 lines (16 loc) 401 B
import { version } from './version2.mjs'; const INSTALLED_KEY = Symbol("INSTALLED_KEY"); const makeInstaller = (components = []) => { const install = (app) => { if (app[INSTALLED_KEY]) return; app[INSTALLED_KEY] = true; components.forEach((c) => app.use(c)); }; return { version, install }; }; export { makeInstaller }; //# sourceMappingURL=make-installer2.mjs.map