UNPKG

nerdamer-ts

Version:

javascript light-weight symbolic math expression evaluator

10 lines (9 loc) 231 B
export namespace Math2 { export { scientificToDecimal }; } /** * Convert number from scientific format to decimal format * @param {Number} num */ declare function scientificToDecimal(value: any): string | number; export {};