UNPKG

word-join

Version:

Tiny module to join arrays with commas, "and", and Oxford comma support

6 lines (5 loc) 148 B
export default function wordJoin(words?: unknown[], options?: { conjunction?: string; oxford?: boolean; separator?: string; }): string;