UNPKG

word-join

Version:

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

7 lines 178 B
//#region src/index.d.ts declare function wordJoin(words?: unknown[], options?: { conjunction?: string; oxford?: boolean; separator?: string; }): string; export = wordJoin;