Adrien Valcke
Adrien Valcke
Hi, The issue isn't coming from Barcode algorithms but browser antialiasing. I fixed this issue for both CSS and SVG rendering. You can find the details in the pull request:...
It would be a great feature for sure. For those that need a way to process multiple files and output them in a directory, I'm currently using this one-line command:...
I have the same issue when using `deepmerge` in a dockerized REST API using NestJS. Using ```javascript import deepmerge from 'deepmerge'; // ... deepmerge(car, body, mergeOptions); ``` Is throwing the...
@douglasg14b one common way to fix this if not already done is to import the library like this: `import * as deepmerge from 'deepmerge';` If your code is compiled somehow...
Hi @tschellenbach and @floppypanda, I was facing the same issues with `valid-url` but also `validator` so I decided to build a module as reliable as possible strictly based on RFC-3986:...
Hi @ogt, Thanks for taking time to merge these PRs. I hope it will fix some of the issues even though applying RFC-3986 is far more complex than it seems...
Hi @RonWang, I was facing the same issues with `valid-url` but also `validator` so I decided to build a module as reliable as possible strictly based on RFC-3986: https://github.com/adrienv1520/node-uri The...
Hi @dandv unfortunately, `validator.isURL('http://example.com:8042/over/there?name=férret#no#se')` returns true whereas `é`and `#` are not allowed in respectively the query and the fragment. I was facing the same issues so I decided to build...
This project, so as `validator`has a lot of issues and is not a reliable way to valid an URL. I was facing a lot of issues so I decided to...
Hi @Ptujec, we've just released this package fixing many issues with the data, adding more features and with data compression: https://github.com/elysiumphase/node-location-timezone. Hope it could help you.