'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const makeInstaller = (components = []) => { const apps = []; const install = (app) => { if (apps.includes(app)) return; apps.push(app); components.forEach((c) => app.use(c)); }; return { install }; }; exports.makeInstaller = makeInstaller; //# sourceMappingURL=make-installer.js.map