aureooms/js-integer-little-endian

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

Summary

Maintainability
A
35 mins
Test Coverage
import { convert_keep_zeros , trim_natural } from './' ;

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

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

    return trim_natural( b , 0 , b.length ) ;

}