@envelop/core
Version:
This is the core package for Envelop. You can find a complete documentation here: https://github.com/n1ru4l/envelop
20 lines (19 loc) • 553 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.useEnvelop = void 0;
const useEnvelop = (envelop) => {
let initialized = false;
return {
onPluginInit({ addPlugin }) {
if (initialized) {
return;
}
for (const plugin of envelop._plugins) {
addPlugin(plugin);
}
// Avoid double execution if envelop is extended multiple times
initialized = true;
},
};
};
exports.useEnvelop = useEnvelop;
;