We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9181a9c commit 5b4b32eCopy full SHA for 5b4b32e
lib/helper.js
@@ -109,7 +109,7 @@ function csvParser(data, callback) {
109
var key, value;
110
for (key in row) {
111
value = row[key].replace(/<b>|<\/b>/g, '');
112
- row[key] = entities.decode(value, 2);
+ row[key] = entities.decodeHTML(value, 2);
113
}
114
return row;
115
}, callback.bind(this));
package.json
@@ -31,12 +31,12 @@
31
},
32
"dependencies": {
33
"commander": "^5.1.0",
34
- "csv": "^5.3.2",
35
- "entities": "^2.0.3",
36
- "mocha": "^8.0.1",
+ "csv": "^6.2.2",
+ "entities": "^4.4.0",
+ "mocha": "^10.1.0",
37
"xml2js": "^0.4.23"
38
39
"devDependencies": {
40
- "nock": "^12.0.3"
+ "nock": "^13.2.9"
41
42
0 commit comments