satkit 0.3.14

Satellite Toolkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
exports.handlers = {
  newDoclet: function (e) {
    // e.doclet will refer to the newly created doclet
    // you can read and modify properties of that doclet if you wish
    if (typeof e.doclet.name === 'string') {
      if (e.doclet.name[0] === '_') {
        console.log(
          'Private method "' + e.doclet.longname + '" not documented.'
        );
        e.doclet.memberof = '<anonymous>';
      }
    }
  },
};