* Check whether a symbol is the only symbol exported by a module (as in * `module.exports = function() {};`). * * @private * @param {module:jsdoc/doclet.Doclet} doclet - The doclet for the symbol. * @return {boolean} `true` if the symbol is the only symbol exported by a module; otherwise, * `f
(doclet)
| 172 | * `false`. |
| 173 | */ |
| 174 | function isModuleExports(doclet) { |
| 175 | return doclet.longname && doclet.longname === doclet.name && |
| 176 | doclet.longname.indexOf(MODULE_NAMESPACE) === 0 && doclet.kind !== 'module'; |
| 177 | } |
| 178 | |
| 179 | function makeUniqueId(filename, id) { |
| 180 | let key; |
no outgoing calls
no test coverage detected
searching dependent graphs…