init
codebolt.cbsearch.init(engine: string): void
Initializes the search module with the specified search engine.
Parameters
Name | Type | Description |
---|---|---|
engine | string | The search engine to use for initializing the module. Defaults to "bing". |
Example
import codebolt from '@codebolt/codeboltjs';
function exampleInit() {
codebolt.search.init("google");
console.log("Search module initialized.");
}
exampleInit();