Skip to content
This repository has been archived by the owner on Mar 16, 2022. It is now read-only.

Latest commit

 

History

History
29 lines (20 loc) · 1.13 KB

README.md

File metadata and controls

29 lines (20 loc) · 1.13 KB

WPPConnectLoader 📞

WPPConnectLoader is an open source project developed by the JavaScript community with the aim of exporting functions from Webpack modules

Our online channels

Discord Telegram Group WhatsApp Group YouTube

Usage

var WPPConnectLoader = require('@wppconnect-team/loader');

var loader = new WPPConnectLoader();

// Get module by id
loader.get(moduleId);

// Get module by search function
loader.searchModule(m => m.default.MyFunctionTest);

// Get module ID by search function
loader.searchModuleId(m => m.default.MyFunctionTest);

// Return a promise with resolved módule
loader.waitForModule(m => m.default.MyFunctionTest);