This commit is contained in:
2024-03-22 03:47:51 +05:30
parent 8bcf3d211e
commit 89819f6fe2
28440 changed files with 3211033 additions and 2 deletions

26
node_modules/cheerio/lib/esm/options.js generated vendored Normal file
View File

@@ -0,0 +1,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