UNPKG

double-double

Version:

Pure double-double precision functions *with strict error bounds*.

10 lines (9 loc) 206 B
/** * Returns the number of leading extraneous zeros before the decimal point. * * @param str * * @internal */ declare function getNumLeadingZeros(str: string): number; export { getNumLeadingZeros };