Due to [this code](https://github.com/NaturalIntelligence/fast-xml-parser/blob/65c39beae792e643cd00a6dd866b31178afcf16b/src/xmlstr2xmlnode.js#L13-L19): ``` //polyfill if (!Number.parseInt && window.parseInt) { Number.parseInt = window.parseInt; } if (!Number.parseFloat && window.parseFloat) { Number.parseFloat = window.parseFloat; } ``` Would it be better to leave polyfills out completely and direct people to use polyfill.io?