I am documenting node application, and using an example like this:
var node_cryptojs = require('node-cryptojs-aes');
var crypto = require('crypto');
var CryptoJS = node_cryptojs.CryptoJS;
var randomstring=require('randomstring');
var trim=require('trim');
module.exports = {
}
the node_cryptojs variable gets labelled as a Global in the docs. Fair enough I guess, but why do none of the other global definitions also appear in the same Global location?
I am documenting node application, and using an example like this:
the
node_cryptojs
variable gets labelled as aGlobal
in the docs. Fair enough I guess, but why do none of the other global definitions also appear in the sameGlobal
location?