(contributor)
| 59 | typeof contributor === "string" ? contributor : formatLanguageMap(contributor?.name); |
| 60 | |
| 61 | const formatContributor = (contributor) => |
| 62 | Array.isArray(contributor) |
| 63 | ? listFormat.format(contributor.map(formatOneContributor)) |
| 64 | : formatOneContributor(contributor); |
| 65 | |
| 66 | class Reader { |
| 67 | #tocView; |
no test coverage detected