(doclet, {title, value})
| 22 | const util = require('util'); |
| 23 | |
| 24 | function applyTag(doclet, {title, value}) { |
| 25 | if (title === 'name') { |
| 26 | doclet.name = value; |
| 27 | } |
| 28 | |
| 29 | if (title === 'kind') { |
| 30 | doclet.kind = value; |
| 31 | } |
| 32 | |
| 33 | if (title === 'description') { |
| 34 | doclet.description = value; |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | function fakeMeta(node) { |
| 39 | return { |
no outgoing calls
no test coverage detected
searching dependent graphs…