(items, limit = 8)
| 4962 | } |
| 4963 | |
| 4964 | function listText(items, limit = 8) { |
| 4965 | const values = splitListValue(items).slice(0, limit); |
| 4966 | return values.length ? values.join(state.locale === "en" ? ", " : "、") : ui().settings.profileFields.notRecorded; |
| 4967 | } |
| 4968 | |
| 4969 | function editableListValue(items) { |
| 4970 | return splitListValue(items).join("; "); |
nothing calls this directly
no test coverage detected