File size: 229 Bytes
1e92f2d | 1 2 3 4 5 6 7 | /**
* Formats an array of values into a string that can be used error messages.
* ["a", "b", "c"] => "`a`, `b`, `c`"
*/
export const formatAvailableValues = (values: string[]) =>
values.map((val) => `\`${val}\``).join(', ')
|