UNPKG
aureooms-js-integer
Version:
latest (1.0.0)
1.0.0
0.3.2
0.3.1
0.3.0
integer code bricks for JavaScript
aureooms.github.io/js-integer
aureooms/js-integer
aureooms-js-integer
/
src
/
1-new
/
convert
/
stringify_keep_zeros.js
12 lines
(6 loc)
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ convert_keep_zeros , _to_string }
from
'.'
;
export
function
stringify_keep_zeros
(
f , t , a , ai , aj
) {
if
( t >
36
)
throw
't > 36 not implemented'
;
const
b =
convert_keep_zeros
( f , t , a , ai , aj ) ;
return
_to_string
( b ) ; }