(tags)
| 786 | } |
| 787 | |
| 788 | function formatExample(tags) { |
| 789 | return tags.filter((tag) => { |
| 790 | return tag.type === 'example' |
| 791 | }).map((tag) => { |
| 792 | return renderExample(tag.string) |
| 793 | }) |
| 794 | } |
| 795 | |
| 796 | function formatArguments(tags) { |
| 797 | const theArgs = tags.filter((tag) => { |
no test coverage detected