UNPKG
nerdamer-ts
Version:
latest (1.2.0)
1.2.0
javascript light-weight symbolic math expression evaluator
nerdamer.com
mugabe/nerdamer
nerdamer-ts
/
dist
/
Functions
/
Math2.d.ts
10 lines
(9 loc)
•
231 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
namespace
Math2
{
export
{ scientificToDecimal }; }
/** * Convert number from scientific format to decimal format *
@param
{
Number
}
num
*/
declare
function
scientificToDecimal
(
value
:
any
):
string
|
number
;
export
{};