Randy Topliffe
Randy Topliffe
@dmbarry86 I've completed the immediate goals listed above and started reviewing pull requests, though, it's going to take some time to review them all. At this time I recommend creating...
Is this still an issue? If so, can you provide the error trace back and the version you're using?
While I see the benefits in supporting something like this, unfortunately I don't think it's worth adding to the project at this time. See my reasoning/explanation below. This would definitely...
> We have a similar issue in our project for time conversions as well. For instance, 1 second becomes 999999999,9999999 ns after the conversion. If this library does not aim...
You'll get this error if you have `strict` set to `true` in the `tsconfig.json` file: ``` Type 'Measure' is not assignable to type 'Measure'. The types of 'systems.metric' are incompatible...
Is it ok if I take a few days to explore this on my own? Adding guard functions to the library as been something I've been wanting to do for...
It's likely that the issue is that for version `2.3.4` the package.json file has the old repository url of [github.com/ben-ng/convert-units](https://github.com/ben-ng/convert-units). A new version could be published with the correct url...
At this time, I don't want to change the current names of any of the units because it would interfere with some of the users' projects. However, with the ability...
Thanks for bringing this up! The short answer is yes, it's a mistake, one that I didn't realize I was making. A lot of the measures need to be updated...
Currently any system name is support as long as there are only two systems per measure. See [length](https://github.com/convert-units/convert-units/blob/main/src/definitions/length.ts#L100) and [digital](https://github.com/convert-units/convert-units/blob/main/src/definitions/digital.ts#L78). Which is why you're seeing `system: 'power'` when calling `describe`....