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
Previous to 0.3.7 utils.strlen converted anything passed into it into a string while stripping it via var stripped = ("" + str).replace(code,'');
As of 0.3.7, str is passed directly to stripAnsi: var stripped = stripAnsi(str);
This means that anything that isn't a string is being passed into it it now breaks in a way that it didn't in 0.3.6. I came across this because @lingui/cli is passing numbers into a table
The text was updated successfully, but these errors were encountered:
Previous to 0.3.7 utils.strlen converted anything passed into it into a string while stripping it via
var stripped = ("" + str).replace(code,'');
As of 0.3.7, str is passed directly to stripAnsi:
var stripped = stripAnsi(str);
This means that anything that isn't a string is being passed into it it now breaks in a way that it didn't in 0.3.6. I came across this because @lingui/cli is passing numbers into a table
The text was updated successfully, but these errors were encountered: