Get a list of all available MathJS functions [duplicate]

How to get a list of all available MathJS functions?

I expect something like: Math.getFunctionList(); // or some code that can parse this list
so I can get something like:
[
‘abs’,
‘add’,
‘cbrt’,
‘ceil’,
‘cube’,
‘divide’,
‘dotDivide’,
‘dotMultiply’,
‘dotPow’,
// …..
]

either objects with information about these functions, or anything so that I can use it as a list.