Complete the given function skeleton in order to make it print the ascii cat contained inside.
Once executed in node of in a browser, the code must print the exactly what is given below. You cannot use node to read the file itself, or print a string.
Example:
Execute your js file in node or in you browser, it must print this:
How
Mainly js magic
You must find a way to print a stringified version of a function.
Once this is done, simply remove all the code you've added to keep the cat and the wrapping function.
Instructions
Start with this code snippet and add stuff to acheive your goal:
Logging a function directly won't give a stringified version of it. You will need to find a trick to do that. A trick that you probably know and use for other non-string stuffs...