We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Converter returns ordinal numbers with wrong endings:
converter.toOrdinal(11); // => “11st” converter.toOrdinal(12); // => “12nd” converter.toOrdinal(13); // => “13rd”
But should be 11th, 12th, 13th.
The text was updated successfully, but these errors were encountered:
toOrdinal: added special behavior for numbers ending with 11, 12 and …
eb196e4
…13. Fixes marlun78#7
Please see my PR #8 which fixes this bug.
Sorry, something went wrong.
Merge pull request #8 from pilyugin/master
5e5e45f
toOrdinal: added special behavior for numbers ending with 11, 12 and 13. Fixes #7
No branches or pull requests
Converter returns ordinal numbers with wrong endings:
But should be 11th, 12th, 13th.
The text was updated successfully, but these errors were encountered: