Files
cx-app-coupangapiclient/node_modules/cheerio/lib/options.js
2020-06-10 06:09:28 +09:00

16 lines
324 B
JavaScript
Executable File

var assign = require('lodash/assign');
/*
* Cheerio default options
*/
exports.default = {
withDomLvl1: true,
normalizeWhitespace: false,
xml: false,
decodeEntities: true
};
exports.flatten = function(options) {
return options && options.xml ? assign({xmlMode: true}, options.xml) : options;
};