UNPKG

double-double

Version:

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

10 lines 210 B
/** * Returns a string having the given number of zeros. * * @internal */ function getZerosStr(n) { return new Array(n + 1).join('0'); } export { getZerosStr }; //# sourceMappingURL=get-zeros-str.js.map