List of all function names #3233
-
Is it possible to get a list of all function names? I've tried the simple thing of enumerating keys on the const { all } = require('mathjs');
console.log(Object.keys(all))
[
'createAbs',
'createAccessorNode',
'createAcos',
'createAcosh',
... |
Beta Was this translation helpful? Give feedback.
Answered by
josdejong
Jul 12, 2024
Replies: 1 comment 1 reply
-
You can do the following: const { create, all } = require('mathjs');
console.log(Object.keys(create(all))) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kennyjwilli
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can do the following: