UNPKG

word-join

Version:

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

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