I have a function:
fs.readFile = function(filename, callback) {
After some time, I want to see the signature of the function during debugging.
When I tried console.log(fs.readFile) , I got [ FUNCTION ] .
It does not give me any information.
How can I get a function signature?
Ashish negi
source share