UNPKG

double-double

Version:

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

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