You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Currently, if
fractionSizeis not passed, for small numbers like1e-50number filter produces string1e-50.It happens because
fractionSizeis undefined here: https://github.com/angular/angular.js/blob/g3_v1_3/src/ng/filter/filters.js#L152undefined + 1isNaNandNaNcan't be bigger than number.Fraction size is only computed if number has no exponent.
Is it by design?