Function: loadBuffer()
function loadBuffer(buffer, options?): CheerioAPI;
Defined in: index.ts
Sniffs the encoding of a buffer, then creates a querying function bound to a document created from the buffer.
Parameters
| Parameter | Type | Description |
|---|---|---|
buffer | Buffer | The buffer to sniff the encoding of. |
options | DecodeStreamOptions | The options to pass to Cheerio. |
Returns
The loaded document.
Example
import * as cheerio from 'cheerio';
const buffer = fs.readFileSync('index.html');
const $ = cheerio.loadBuffer(buffer);