blob: b157fcdb56b9b4b1a3988179d64af311d818a246 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
const defaultOpts = {
xml: false,
decodeEntities: true,
};
/** Cheerio default options. */
export default defaultOpts;
const xmlModeDefault = {
_useHtmlParser2: true,
xmlMode: true,
};
/**
* Flatten the options for Cheerio.
*
* This will set `_useHtmlParser2` to true if `xml` is set to true.
*
* @param options - The options to flatten.
* @returns The flattened options.
*/
export function flatten(options) {
return (options === null || options === void 0 ? void 0 : options.xml)
? typeof options.xml === 'boolean'
? xmlModeDefault
: { ...xmlModeDefault, ...options.xml }
: options !== null && options !== void 0 ? options : undefined;
}
//# sourceMappingURL=options.js.map
|