David Roeca
David Roeca
@pokoli the same issue exists in my app, with version `4.3.6`, so I'm pretty sure this isn't just an issue with the demo on the site. EDIT: This works in...
I've tested this on firefox and chrome and it seems that the `FileReader` API's [readAsText](https://w3c.github.io/FileAPI/#ref-for-dfn-readAsText) method always adds a line break to the end of a file that doesn't originally...
I agree, especially since this behavior isn't even part of a standard so it may change. It probably makes sense to document, possibly something to highlight in the demo portion...
@aadsm I honestly haven't tried, I've only worked with local files using the ReactNativeFileReader. The issue at hand is with https://github.com/aadsm/jsmediatags/blob/master/src/XhrFileReader.js Maybe alternative logic for the following? https://github.com/aadsm/jsmediatags/blob/7d5902a2a8e6e06a350506bf689cc7cff3d4dece/src/XhrFileReader.js#L300-L312
@aadsm I'm currently taking a stab at this and there are a couple of hurdles that are difficult. 1. React-Native is built with node/babel, so the build2 directory needs to...
I believe this is a duplicate of https://github.com/jaredpalmer/formik/issues/1698
I agree, it's a bit annoying of yarn to force libraries with dependencies that have peer dependencies to re-declare them. I guess it's just a way for yarn to bubble...
Ok I confirmed that these `"*"` `peerDependencies` effectively defer versioning restrictions to modules that they depend on. This behavior works consistently on: ```shell $ npm --version 6.14.8 $ yarn --version...
Found a work-around for myself in my yarn configuration https://yarnpkg.com/configuration/yarnrc#packageExtensions - works for now, though not the most ideal
Just coming here to voice my agreement that these warnings are annoying and exist in other libraries as well. For me this happened with [svelma](https://github.com/c0bra/svelma/pull/57). I didn't write the library...