We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a6b605 commit 0d989aaCopy full SHA for 0d989aa
src/utils.js
@@ -1,4 +1,7 @@
1
-const parserErrorHandler = platform => error => console.log(new Date(), platform, error.toString());
+const parserErrorHandler = platform => error => {
2
+ console.log(new Date(), platform, error.toString());
3
+ return [];
4
+}
5
6
const flat = arr => arr.reduce((res, it) => res.concat(Array.isArray(it) ? flat(it) : it), []);
7
0 commit comments