Divides a number by a given exponent of base 10 (10exponent), and un-scales it into a string representation of the number.
A string representation of the number
unScale(112000000000000000000n, 18) // '112'unScale('112000000000000000000', 18) // '112' Copy
unScale(112000000000000000000n, 18) // '112'unScale('112000000000000000000', 18) // '112'
Divides a number by a given exponent of base 10 (10exponent), and un-scales it into a string representation of the number.