blob: 791ce40977d95812811e90c55a9dd7826c28e07d [file] [log] [blame]
TheCodedProf1f675042023-02-16 17:01:29 -05001export default (list: string[], max: number) => {
2 // PineappleFan, Coded, Mini (and 10 more)
3 if(list.length > max) {
4 return list.slice(0, max).join(", ") + ` (and ${list.length - max} more)`;
5 }
6 return list.join(", ");
7}