Searched defs:formatToList (Results 1 – 2 of 2) sorted by relevance
1 const formatToList = (items: string[]) => items.map((key) => `- ${key}`).join('\n'); constant
3 const formatToList = (items) => items.map((key) => `- ${key}`).join('\n'); function