DamianCz
Results
3
comments of
DamianCz
There are some divided by zero in implementation I can provide fix @danilosalvati if you want.
@danilosalvati it is safe to check all divided places . I will add PR when I will find time
@pygabc1 I have added function and replace all usage of / with this function. Will add PR this week. ``` function dividedValue(divident, divisor) { if (divisor === 0) { return...