summaryrefslogtreecommitdiff
path: root/includes/external/addressbook/node_modules/cheerio/lib/esm/options.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/addressbook/node_modules/cheerio/lib/esm/options.js')
-rw-r--r--includes/external/addressbook/node_modules/cheerio/lib/esm/options.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/includes/external/addressbook/node_modules/cheerio/lib/esm/options.js b/includes/external/addressbook/node_modules/cheerio/lib/esm/options.js
deleted file mode 100644
index b157fcd..0000000
--- a/includes/external/addressbook/node_modules/cheerio/lib/esm/options.js
+++ /dev/null
@@ -1,26 +0,0 @@
-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 \ No newline at end of file