js-help
v0.0.4
Published
Get help about a javascript object
Downloads
1
Readme
js-help
Get help about a given javascript object.
A handy tool to get the list of functions
in a given object when you are writing your
code using a text editor.
Usage
var help = require('js-help');
help(console);
0 : assert()
1 : Console(stdout,stderr)
2 : dir()
3 : error()
4 : info()
5 : log()
6 : time()
7 : timeEnd()
8 : trace()
9 : warn()
js-help
takes javascript object as argument and prints the list of functions with arguments in the object.
Installation
npm install js-help
Warning
This does not include all the arguments a
function can accept. You may want to refer
to the document for detailed parameter.
For Example, js-help for console object will
list log() without any argument.
But, log() does accept an argument.