Suppose I have several arrow functions:
const a = (b, c) => { // body
}
const b = (g, f) => { // body
}
module.exports = { a }
Now I'd like to have references to all this module's functions (not only exported ones as 'a' function but 'b' function also)
How to make something like
const functionsArray = module...keys()
(what should be here?)
How to do this inside this module?