6 lines
108 B
JavaScript
6 lines
108 B
JavaScript
import cheerio from 'cheerio';
|
|
|
|
/** load html */
|
|
export function doc(html) {
|
|
return cheerio.load(html);
|
|
}
|