Added NumberUtils extensions

This commit is contained in:
Auxilor
2022-02-03 11:08:20 +00:00
parent a148f667e5
commit f3c69f1c15

View File

@@ -0,0 +1,9 @@
@file:JvmName("NumberUtilsExtensions")
package com.willfp.eco.util
/**
* @see NumberUtils.toNumeral
*/
fun Number.toNumeral(): String =
NumberUtils.toNumeral(this.toInt())