Node js module How to get list of exported functions
Given the node js module / package, is there any way to retrieve all the functions exported by this module?
For example, if a module has a js file with the following code:
exports.tokenizer = tokenizer;
exports.parse = parse;
exports.slice = slice;
exports.curry = curry;
Then I would like to have the following list as export: tokenizer, parse, slice, curry
+3
source to share