Open getsnoopy opened 5 years ago
I noticed in the code, it says mystring.toLocaleString('us-EN'). This should be mystring.toLocaleString('en-US'), as the BCP 47 tag structure is <language>-<COUNTRY>.
mystring.toLocaleString('us-EN')
mystring.toLocaleString('en-US')
<language>-<COUNTRY>
@m1l Any update on the issue? I'd be happy to submit a PR.
I noticed in the code, it says
mystring.toLocaleString('us-EN')
. This should bemystring.toLocaleString('en-US')
, as the BCP 47 tag structure is<language>-<COUNTRY>
.