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
Previously the float filter would return 0.0 when trying to coerce a non-numeric string. It looks like after #178 (change to numberFormat.parse()) strings that start with numbers can be converted to floating point numbers.
Previously the
float
filter would return0.0
when trying to coerce a non-numeric string. It looks like after #178 (change tonumberFormat.parse()
) strings that start with numbers can be converted to floating point numbers.Before:
"30%"|float == 0
After #178 :
"30%"|float == 30
The text was updated successfully, but these errors were encountered: