Eric MORAND
Eric MORAND
@tbiesemann , @bcoe , I opened an issue in node.js issue tracker. This is likely to be a v8 issue but since I'm using node.js to reproduce the issue, I...
The test suite of this project is totally wrong. It only tests that an XML converted from an array is actually converted back to the same array bu the library....
Isn't there a risk that lines removed by treeshaking are marked as empty? This is maybe not an issue (after all if they are not in the built artifact, it...
`require('parse-function/dist/index.js');` returns the `parse` function itself. `require('parse-function/dist/index.es.js');` returns an object with a `default` property. It means that you can't use `require('parse-function)` in your code because it will resolve to the...
For what it's worth, here is how I export my modules to provide the same API for both: index.cjs.js: ```javascript class Foo { } exports.Foo= Foo; ``` index.es.js: ```javascript export...