UNPKG

quaeratin

Version:

An extended precision floating point library (as per Shewchuk) - precision only limited by overflow / underflow

10 lines 252 B
import { parseDouble } from './parse-double.js'; /** * Returns the normalized exponent of the given number. * @param a A double */ function exponent(a) { return parseDouble(a).exponent; } export { exponent }; //# sourceMappingURL=exponent.js.map