We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 666b645 commit 4e54c2cCopy full SHA for 4e54c2c
lib/concatJS.js
@@ -28,7 +28,7 @@ function concatJS(data) {
28
let htmlTxt = ''
29
html.on('data', (chunk) => (htmlTxt += chunk));
30
html.on('end', () => {
31
- const $ = cheerio.load(htmlTxt);
+ const $ = cheerio.load(htmlTxt, { decodeEntities: false });
32
const $scripts = {};
33
const srcs = [];
34
$('script[src]').each((idx, ele) => {
0 commit comments