(content)
| 295 | // Returns `content` if its a string, or `content.description` if it can. |
| 296 | // Used for getting the nested `description` key in glossary files. |
| 297 | function getContent(content) { |
| 298 | if (typeof content === 'string') return content |
| 299 | if (typeof content.description === 'string') return content.description |
| 300 | return null |
| 301 | } |
| 302 | |
| 303 | const diffFiles = getDiffFiles() |
| 304 |