(options)
| 80 | } |
| 81 | |
| 82 | function getCommentsOption(options) { |
| 83 | let comments = 'comments' in options ? options.comments : 'exclamation'; |
| 84 | |
| 85 | if (typeof comments === 'boolean') { |
| 86 | comments = comments ? 'exclamation' : false; |
| 87 | } else if (comments !== 'exclamation' && comments !== 'first-exclamation') { |
| 88 | comments = false; |
| 89 | } |
| 90 | |
| 91 | return comments; |
| 92 | } |
| 93 | |
| 94 | function getRestructureOption(options) { |
| 95 | if ('restructure' in options) { |
no outgoing calls
no test coverage detected
searching dependent graphs…