ordinalize-tr
v1.0.1
Published
Add ordinal suffix to a number - for Turkish language
Downloads
4
Maintainers
Readme
ordinalize-tr
Add ordinal suffix to a number - for Turkish language
✅ It can calculate all ordinal suffixes, up to Trillion and beyond! 🚀
Install
npm install ordinalize-tr
Usage
const { ordinal } = require('ordinalize-tr');
ordinal(5); // Returns: "5'inci"
ordinal(5, false); // Returns: "inci"
Usage in Browser
<script src="https://unpkg.com/ordinalize-tr/dist/index.umd.js"></script>
<script>
window.ordinalizeTR.ordinal(43); // Returns: "43'üncü"
</script>
Type Signature
const ordinal = (num: number, onlySuffix: boolean = false) => string;
Contribution
As always, I'm open to any contribution and would like to hear your feedback.
Just an important reminder:
If you are planning to contribute to any open source project, before starting development, please always open an issue and make a proposal first. This will save you from working on features that are eventually going to be rejected for some reason.
LICENCE
MIT (c) 2020 Mehmet Yatkı