UNPKG

@envelop/core

Version:

This is the core package for Envelop. You can find a complete documentation here: https://github.com/n1ru4l/envelop

10 lines (9 loc) 215 B
export const useEnvelop = (envelop) => { return { onPluginInit({ addPlugin }) { for (const plugin of envelop._plugins) { addPlugin(plugin); } }, }; };