@envelop/core
Version:
This is the core package for Envelop. You can find a complete documentation here: https://github.com/n1ru4l/envelop
16 lines (15 loc) • 421 B
JavaScript
export 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;
},
};
};