UNPKG
theorem.js
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.1
1.0.0
0.1.0
0.0.2
0.0.1
A Math library for computation in JavaScript
github.com/arguiot/TheoremJS
arguiot/TheoremJS
theorem.js
/
src
/
includes
/
functions
/
other
/
convertToBase.js
5 lines
(4 loc)
•
164 B
JavaScript
View Raw
1
2
3
4
5
convertToBase
(
x, n
) {
const
BN
=
BigNumber
.
clone
({
ALPHABET
:
"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+/"
})
return
new
BN
(x).
toString
(n) }