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 fc45951 commit da3ebe7Copy full SHA for da3ebe7
src/utils.js
@@ -1,4 +1,4 @@
1
-const parserErrorHandler = platform => error => console.log(platform, error.toString());
+const parserErrorHandler = platform => error => console.log(new Date(), platform, error.toString());
2
3
const flat = arr => arr.reduce((res, it) => res.concat(Array.isArray(it) ? flat(it) : it), []);
4
0 commit comments