(list, count)
| 138 | * @returns {string} string representation of list |
| 139 | */ |
| 140 | const moreCount = (list, count) => |
| 141 | list && list.length > 0 ? `+ ${count}` : `${count}`; |
| 142 | |
| 143 | /** |
| 144 | * Defines the with required type used by this module. |
no outgoing calls
no test coverage detected