UNPKG

double-double

Version:

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

13 lines (9 loc) 192 B
/** * Returns a string having the given number of zeros. * * @internal */ function getZerosStr(n: number) { return new Array(n + 1).join('0'); } export { getZerosStr }