aureooms/js-integer-little-endian

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

Summary

Maintainability
A
0 mins
Test Coverage
import { parse_keep_zeros , trim_natural } from './' ;

export function parse ( f , t , string ) {

    const b = parse_keep_zeros( f , t , string ) ;

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

}