(string)
| 811 | } |
| 812 | |
| 813 | function capitalizeFirstLetter(string) { |
| 814 | return string.charAt(0).toUpperCase() + string.slice(1) |
| 815 | } |
| 816 | |
| 817 | function renderArg(tag) { |
| 818 | const optionalText = (tag.name.match(/^\[/)) ? '(optional) ' : '' |
no outgoing calls
no test coverage detected