function-logger
Logging of the input and output arguments of the function on each call.
Example
code
{ console; return 'job report: ' + job;} // doJob('run')'run';
output in console

Install
npm install function-logger --save-dev
You can set globally, to be used in all their projects without having to install each.
Usage
Wrap the function for which you want to watch. And yet! 🏁
; // foo('bar')'bar'
Usage for CodePen and JSBin as UMD module
in html area
<script src="https://unpkg.com/function-logger@latest/build/umd/index.js"></script>
in js area use functionLogger
from global scope
Contributing
Got ideas on how to make this better? Open an issue!
License
MIT