class CollegeConfidentialLoaderExtracts the text content from the loaded document using the selector
Fetches the web document from the webPath and loads it using Cheerio.
A static method that dynamically imports the Cheerio library and
Fetches web documents from the given array of URLs and loads them using Cheerio.
const loader = new CollegeConfidentialLoader("https:exampleurl.com");
const docs = await loader.load();
console.log({ docs });A document loader specifically designed for loading documents from the College Confidential website. It extends the CheerioWebBaseLoader.