aureooms/js-integer-little-endian

View on GitHub
src/1-new/convert/stringify.js

Summary

Maintainability
A
35 mins
Test Coverage
import { convert , _to_string } from './' ;

export function stringify ( f , t , a , ai , aj ) {

    if ( t > 36 ) throw new Error('t > 36 not implemented') ;

    const b = convert( f , t , a , ai , aj ) ;

    return _to_string( b ) ;

}